Forum Replies Created
-
AuthorPosts
-
wensolutionsKeymaster
Hello @mattdula,
Glad to know your issues have been resolved.
If you have any issues/queries further, please feel free to write back to us.
Best Regards !!
wensolutionsKeymasterHello @mattdula,
Since you have longer menu increasing the size of the logo will make the menu shifts downward.
So we will provide the CSS that will adjust your logo, menu.
For this go to Admin Panel > Appearance > Customize > Additional CSS and paste below given CSS.
.custom-logo-link { max-width: 200px; padding: 30px 0; } img.custom-logo { width: 200px; } .main-navigation ul li a { font-size: 12px; padding: 30px 10px; }
Hope this helps.
Best Regards!!
June 8, 2018 at 1:50 am in reply to: How can I move my category description from above to below the list of goods? #73385wensolutionsKeymasterHello @danilko-kuyandex-ru,
First of all thank you very much for using the theme 🙂 .
Now coming back to your query, to adjust the content and the product image in single product page requires code customization and as much as we would love to help you with this we are unable to do so as it is beyond the support we offer for our product.
Hope you understand.
Best Regards!!
wensolutionsKeymasterHello @somniumlucidus,
Yes, we will definitely release the update including the .pot file.
Also, we are very glad that you find the solution as for now.
Do not forget to post if you have any issues further 🙂 .
Thank you.
Best Regards!!
wensolutionsKeymasterHello @sgtool,
Glad that you figured out your previous issues.
Now to remove the color triangle in the homepage use below given CSS.
For this go to Admin Panel > Appearance > Customize > Additional CSS and paste below given CSS.
.top-seller-section::before { display: none; } .discount-section > .container::after { display: none; }
If this does not solve the issue then please provide your site URL so that we could provide precise fix.
Thank you 🙂
Have a good day.
wensolutionsKeymasterHello @jrodriguez88,
The theme already has the option to manage the page layout or the entire layout of the site. If you do not want to display the sidebar in the pages then you can set the option of no sidebar.
For this you can go to Admin Panel > Appearance > Customize > Theme Options > Layout and manage the settings as per your requirement.
For pages, you can even manage the layout setting from the meta-option available in the individual page.
Screenshot:
Hope this helps.
Best Regards!!
wensolutionsKeymasterHello @matthew,
First of all thank you very much for using the pro version of the theme.
Now since above provided CSS is not working for you then please provide your site URL so that we can provide the precise fix on this.
Thank you.
Best Regards!!
wensolutionsKeymasterHello @jrodriguez88,
First of all thank you very much for trying the theme.
Also, when we tested the theme locally, we were unable to find such issue i.e. the hamburger menu is working fine.
So in your case, the issue might have arisen due to conflict with the third party plugin so if you have installed any then please deactivate and verify the issue.
If the issue still persists then kindly let us know. Also, do forget to post your site URL.
Thank you.
Regards!!
wensolutionsKeymasterHello @869140255qq-com,
First of all thank you very much for using the pro version.
Also once you activate the theme you will get the list of posts in the home. So to change it into the structure as shown in the demo at first you need to manage your homepage settings.
For this go to Admin Panel > Appearance > Customize > Homepage Settings and set the Homepage displays to “A static Page” and set the pages for the front page and blog page.
Now, you have to set up the sections through customize screen.
To help you setup your site we have the theme’s official documentation which you can refer.
Documentation.
http://themepalace.com/instructions/themes/trade-line-pro/
Further, if you find any confusion while setting up any of the sections then please let us know.
Thank you.
Regards!!
wensolutionsKeymasterHello @sgtool,
When we tested the code locally, we were unable to find such issue so please can you provide the entire code in your child theme’s functions.php file so that we could inspect further and help you.
Thank you.
Best Regards!!
wensolutionsKeymasterHello @asbury_web,
Currently, there is no such feature in the theme and as much as we would love to help you with this we are unable to do so as it requires higher code customization.
Hope you understand.
Best Regards!!
wensolutionsKeymasterHello @elucien,
First of all thank you very much for using the pro version of the theme.
Actually, you can set the homepage design in two different ways and this feature is managed from the customizer itself.
For this simply go to Admin Panel > Appearance > Customize > Theme Options > General Settings and chose either Design I, Design II in the option “Choose home page design” as per your requirement.
Hope this clears the confusion.
If you have any issues further then please let us know.
Thank you.
Best Regards!!
wensolutionsKeymasterHello @tussinglady,
Thank you very much for using the theme.
Now when we tried to inspect your site URL to fix the issue, we were unable to access it.
So once you made the site live please let us know and we will provide the precise fix.
Thank you.
Best Regards!!
wensolutionsKeymasterHello @somniumlucidus,
First of all thank you very much for using the theme.
When checked the theme, the language folder is missing in the theme but we will soon release the update fix the issue.
Hoping for your co-operations.
Thank you.
Best Regards!!
wensolutionsKeymasterHello @sgtool,
To remove the Archive: in the shop page you have to add custom code through your child theme functions.php file.
You can activate the child theme manually or from the plugins.
After activating the child theme in your child theme functions.php file add below given code.
function ecommerce_market_pro_remove_cat_titles($title) { if ( is_category() || is_archive('product') ) { if ( function_exists( 'is_shop' ) ) { if ( is_shop() ) { $title = woocommerce_page_title(); } else{ $title = single_cat_title( '', false ); } } else { $title = single_cat_title( '', false ); } } elseif ( is_tag() ) { $title = single_tag_title( '', false ); } elseif ( is_author() ) { $title = '<span class="vcard">' . get_the_author() . '</span>' ; } return $title; } add_filter( 'get_the_archive_title', 'ecommerce_market_pro_remove_cat_titles' );
Hope this helps.
Best Regards!!!
-
AuthorPosts