Forum Replies Created
-
AuthorPosts
-
September 4, 2016 at 11:40 pm in reply to: Social Menu – Customizer – Cannot "Save & Publish" #16930
wensolutions
KeymasterHello,
Thank you for lettings us know about the issue we really appreciate it. As we said earlier this issue occurs only on your site, it does not replicate for us or any other users till date.
We tried to log into your websites backend again, but it seems that you have changed the credentials. Can you please resend your backend credentials to the email that you sent earlier so that we can fix this issue for you?
Hope you understand,
Best regards.September 4, 2016 at 10:37 am in reply to: Social Menu – Customizer – Cannot "Save & Publish" #16892wensolutions
KeymasterHello,
We have logged into your website and monitored the issue, although we are not sure what is causing the issue ( as it is working fine on other websites and on our local machine while testing), we have informed the theme authors to find the root cause of the issue.
Hope you understand.
Best regards.September 4, 2016 at 10:32 am in reply to: Advanced Recent Posts Widget Does Not Work Properly – Excerpt not visible #16890wensolutions
KeymasterHello,
We have logged into your site and tested the excerpt option, it seems like it is working just fine.If you would want to see the change on the customizer, we would like to inform you that, you will have to click out side the excerpt option box after you have changed its value to see it work on the customizer.
Hope you understand.
Best regards.wensolutions
KeymasterHello,
The interactivity is better because as you see you have added a page itself on the top level menu, but on the demo the theme authors have added a hash link or as we call it a custom dummy link.
As you can see the top level menu item which consists of drop down does not have any link on it so it is staying on the same page.
You can also add customlink as your top level menu and add related pages to it from menu option.But if you want your dropdown to work as it should, please have patience with us, we have informed the theme authors and they are working on a solution for it.
Hope you understand.
Best regards.wensolutions
Keymasterhello @Andyo,
You can replace the following Custom CSS in your custom CSS field with the one below to remove the title from the page you have posted URL of :
.blog .page-title { display: none; }Best Regards !!
wensolutions
KeymasterHello @Super Games,
As much as we would like to help you resolve your issue, we are sorry to inform you that third party plugins like qTranslate has not been tested for compatibility with Trade Line Pro theme.
Your query includes code customization and third party plugin implementation which is beyond scope of this support.Please consider posting your query in the plugin’s support forum for support of your issue or you can Hire a customizer for further assistance in your custom task.
Hope you would understand,
Best Regards !!
wensolutions
KeymasterHello @Andyo,
The Custom CSS we have provided removes the title from all pages. From your screenshot it seems like the page you are referring to is one of the archive / category page. However, we couldn’t be completely assured with the page type just looking at the screenshot.
However, if your page is a archive listing page, you can try replacing the Custom CSS with the one below and the title should be removed :
.archive .page-header { display: none; }Please provide us your site URL to the page you are referring to if the above custom CSS does not work for your page.
Hope this resolves your issue,
Best Regards !!
wensolutions
KeymasterHello, @Super Games
Apologies for the delay in replying to you.
Ok going into the query, if you are using the polylang plugin for multilingual website then the plugin offers a language menu to be added in menu. So you can create a menu and you need to add Language switcher menu to that menu and assign the menu to social menu. By this way you can replace the social menu.
But the theme itself doesn’t support the languages flags.
However if you are using another plugins then going into particular plugin support forum and ask you query. Which would be way better.
Hope this will help you.
Regards!!!
wensolutions
KeymasterHello @Andyo,
Please follow the following guidance to resolve your issues :
1) To remove the page title from your pages, you will need to add the following custom CSS in your Dashboard > Appearance > Customize > Theme Options > Custom CSS ,
.page .entry-title { display: none; }2) To replace the default [..] to Read More button you will first need to create a child theme and add the hook to add “Read More” button. If you need reference on creating child theme, please see this link.
After creating and activating the child theme, paste in the following code to your child theme’s functions.php file,
function bizlight_excerpt_more($more) { global $post; return '<a class="read-more" href="'. esc_url( get_permalink( $post->ID ) ) . '">Read More</a>'; } add_filter('excerpt_more', 'bizlight_excerpt_more');You will also need to add in the custom CSS field the following Custom CSS for the “Read More” button,
a.read-more { display:inline-block; padding: 7px; background: #028484 ; margin-left: 4px; border-radius:2px; } a.read-more:hover{ color:white !important; }This will add a read more button to your blog posts.
3) To add a background color to the default pagination buttons also add the following custom CSS in the theme’s custom CSS field,
.nav-links a { background-color: #028484; }You can replace the background color of the buttons with hex code of color of your choice,
Hope this resolves your issues,
Let us know how it goes !!
wensolutions
KeymasterHello @steveywondrous
To change the text of Search button you need to create and activate child theme.
Reference here for child theme.https://codex.wordpress.org/Child_Themes
After that in main theme’s folder you will see basic.php file inside inc/hook.
In this file you will see function education_hub_customize_search_form() { in line no: 18.Now you need to copy the entire function from line no: 18-31, in child theme’s folder functions.php file.
Now inside that function you will below part of code:
<input type="submit" class="search-submit" value="'. esc_attr_x( 'Search', 'submit button', 'education-hub' ) .'" />Now, here you can change the text ‘Search‘ as you want, if you want to change to ‘Buscar‘ then it will be:
<input type="submit" class="search-submit" value="'. esc_attr_x( 'Buscar', 'submit button', 'education-hub' ) .'" />Hope this will help to resolve you issue.
Let us know how it goes.Regards!!!
wensolutions
KeymasterHello,
As much as we would love to help you, your query is a bit confusing. Can you please provide your site URL or a screenshot that can explain your problem better?
If it is a menu problem you can try and resolve it form Dashboard -> Appearance -> Customize -> Menus -> {{select your menu}} -> Remove the extra home link.
If the above solution helps please let us know, if it does not help please kindly provide necessary assets to help us understand your issue.
Hope you understand.
Best regards.wensolutions
KeymasterHello,
Please add the below given CSS to Dashboard -> Appearance -> Customize -> Theme Options -> Advanced Options
#footer-widgets { background-image: none !important; }Hope it helps.
Best regards.wensolutions
KeymasterHello @Bisworimal,
To add your social links to the footer of Travel Eye Pro theme, you will need to create a “Social” menu and add your social links in the menu.
First, in your Dashboard > Appearance > Customize > Menus > Add a menu, create a new menu. After creating a new menu click on “Add Items” button and click on “Custom Links“. Enter your social link in URL and provide a label and click on “Add to Menu”.
After you have finished adding all your social links check the “Social Menu” option under “Menu Locations“.
Save your changes and you will be able to see your added social links in the footer bottom area.
Regards!!
wensolutions
KeymasterHello @Jeroi
We are so confused what are you trying to tell.
If you want more text to be appear on front page then you can do it with Excerpt.
When you go to particular page for edit then below the content writing section there you will see Excerpt section, where you can write as much as text as you want and all of it will be displayed in front page.See below image.

Furthermore, you will get an option through customizer as well.
First go to Admin Panel / Appearance / Customize / Home/Front Service Section / Service Options, you will see Number Of Words in Single Column Content option where you can set the number of words to be displayed in single column.Hope this will help you.
Regards!!!!
wensolutions
KeymasterHello @Jeroi
We are very unknown about the fact that we told you that you may not get services control without buying the pro and we are very sorry for that.
However if you want support for video then you need to play a bit with the code itself.
For that you need to create child theme. Reference here for child theme
https://codex.wordpress.org/Child_Themes
Now after successfully creating and activating the child theme. The main files inside child theme’s folder would be style.css and functions.php file.
Now you need to look into main theme’s folder, you will see homepage-service.php file inside inc/hooks. Here you will see function bizlight_home_service() in line no: 119. The line no may conflict according to the editor.Now you need to copy entire function from line no:119-247 to your child theme’s functions.php file.
Now you need to edit this file that you have in child theme.
In that code you copied you need to find below block of code.<div class="box-content-text"> <p> <?php echo wp_kses_post( $bizlight_service_array['bizlight-home-service-content'] );?> </p> </div>and replace it with below block of code.
<div class="box-content-text"> <p> <?php echo $bizlight_service_array['bizlight-home-service-content'] ;?> </p> </div>Now its all done.
But if you are not used to codes the you may consider hiring a customizer.
Please refer below link if you are interested in hiring a customizerhttp://themepalace.com/hire-a-customizer/
Hope you understand.
Best Regards!!!
-
AuthorPosts





