Free WP TP
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Unite] Woocommerce – Remove cart from menu barHi @blindsided,
I hope you are well today and thank you for your question.
You can just hide it by adding the following CSS code in the Custom CSS option of your theme on the below path.
Admin Area -> Apperance -> Theme Options -> Other -> Custom CSS
ul.nav.navbar-nav.navbar-right { display: none; }Best Regards,
MovinForum: Themes and Templates
In reply to: [Unite] Please updateHi @seayko,
I hope you are well today and thank you for your question.
Soon we are going to release the updated theme version moving all theme options to theme customizer which is the requirement of the themes released on wordpress.org theme repository.
In the meanwhile if you want to use the updated version of the theme then you can get it from the following page.
https://github.com/puikinsh/Unite-Theme
Best Regards,
MovinForum: Themes and Templates
In reply to: [Dazzling] Slider not workingHi @ian.matsumoto,
I hope you are well today and thank you for your question.
The slider displays on the front page whether it is set to display posts or the static page.
Could you please tell me how you have set the Woocommerce shop as the home page so that i can test it on my test site?
I tried to troubleshoot it on your site but your site is displaying coming soon message and it’s not accessible.
Kind Regards,
MovinForum: Themes and Templates
In reply to: [Dazzling] Is it possible to modify the posts like this?Hi @gleegum,
I hope you are well today and thank you for your question.
Yes you can achieve this as displayed in your shared image by developing custom code in the custom template of child theme.
Cheers,
MovinForum: Themes and Templates
In reply to: [Dazzling] background image won't stay fixed in mobile versionHi @colinvansmith,
I hope you are well today and thank you for your question.
I visited your shared site and the background image seems working fine on my mobile.
Which mobile device are you using to test it?
Kind Regards,
MovinForum: Themes and Templates
In reply to: [Dazzling] Change the height of Call for ActionHi @criacao2jal,
I hope you are well today and thank you for your question.
You can achieve this by adding the following CSS code in the Custom CSS option of your theme on the below path.
Admin Area -> Apperance -> Theme Options -> Other -> Custom CSS
#page .cfa { height: 150px; padding-top: 48px; text-align: right; } #page .cfa span.cfa-text, #page .cfa .cfa-button { font-size: 25px; }Change the values of properties in the above code to whatever you want to set.
Best Regards,
MovinForum: Themes and Templates
In reply to: [Dazzling] Slider text doesnt appear on mobileHi @mhallaba,
I hope you are well today and thank you for your question.
It’s the default behavior of the theme to hide it on smaller screen sizes but you can display it by adding the following CSS code in the Custom CSS option of the latest version of Dazzling theme on the below path.
Admin Area -> Apperance -> Theme Options -> Other -> Custom CSS
#page .flex-caption { display: block; }Best Regards,
MovinForum: Themes and Templates
In reply to: [Dazzling] height of website pagesHi there,
I hope you are well today and thank you for your question.
It’s the default behavior of the theme and what you are trying to achieve is sticky footer.
You can create a sticky footer on your site as described on the following pages.
https://wordimpress.com/put-a-css-sticky-footer-in-your-wordpress-theme/
http://www.cssstickyfooter.com/using-sticky-footer-code.htmlBest Regards,
MovinForum: Themes and Templates
In reply to: [Dazzling] Mobile version messed upResolved the issue on the following topic.
https://colorlib.com/wp/forums/topic/mobile-version-turned-messy/
Forum: Themes and Templates
In reply to: [Dazzling] Drop down menu issuesHi there,
I hope you are well today and thank you for your question.
You can make the top menu item having sub menu clickable by using the custom plugin solution shared in the following reply.
https://colorlib.com/wp/forums/topic/correct-menu-structure/page/2/#post-28178
I have used the above solution with the latest version of Dazzling theme and it worked fine for me.
Best Regards,
MovinForum: Themes and Templates
In reply to: [Dazzling] Tagline doesn't appear on homepageHi Leela,
I hope you are well today and thank you for your question.
Currently the Dazzling theme doesn’t display tagline. We have added this feature in the feature request so that it can be considered for future development.
In the meanwhile you can achieve this by using the following child theme of Dazzling theme that contains some custom code.
https://drive.google.com/file/d/0B7X-aZPqO9LzU3IxVU5OdkpjVDg/view?usp=sharing
Best Regards,
MovinForum: Themes and Templates
In reply to: [Dazzling] Add Feature image on static pages with mouseoverHi @crouchingbruin,
I hope you are well today and thank you for helping here.
Your help here is really appreciated.
Thanks,
MovinForum: Themes and Templates
In reply to: [Dazzling] Post overlapping productsHi @radamizell,
I hope you are well today and thank you for your question.
Could you please share me your site URL where this is happening so that i can troubleshoot it and help you to resolve the issue?
Kind Regards,
MovinForum: Themes and Templates
In reply to: [Dazzling] bug in popular post widgetHi Christian,
I hope you are well today and thanks for posting here.
I could confirm the issue on my test site therefore i have notified the theme developer about it so that it can be fixed.
In the meanwhile you can resolve the issue by editing the following Dazzling theme files.
Change the code in the following dazzling theme file on line number 231
/dazzling/inc/extras.php
Before Editing :
function dazzling_setPostViews($postID) { $count_key = 'post_views_count'; $count = get_post_meta($postID, $count_key, true); if($count==''){ $count = 0; delete_post_meta($postID, $count_key); add_post_meta($postID, $count_key, '0'); }else{After Editing :
function dazzling_setPostViews($postID) { $count_key = 'post_views_count'; $count = (int)get_post_meta($postID, $count_key, true); if($count==''){ $count = 0; delete_post_meta($postID, $count_key); add_post_meta($postID, $count_key, 0); }else{Change the code in the following dazzling theme file on line number 45
/dazzling/inc/popular-posts-widget.php
Before Editing :
$recent_posts = new WP_Query(array('showposts' => $number, 'ignore_sticky_posts' => 1, 'post_status' => 'publish', 'order'=> 'DESC', 'showposts' => $number, 'meta_key' => 'post_views_count', 'orderby' => 'meta_value'));After Editing :
$recent_posts = new WP_Query(array('showposts' => $number, 'ignore_sticky_posts' => 1, 'post_status' => 'publish', 'order'=> 'DESC', 'meta_key' => 'post_views_count', 'orderby' => 'meta_value_num'));Please note you are making changes in the theme files therefore you have to make these changes again after theme updation as changes made in the theme files get lost on theme updation.
Best Regards,
MovinForum: Themes and Templates
In reply to: [Dazzling] Remove footer with CSSHi @blogza,
I hope you are well today and thank you for your question.
This is hard to be done using CSS but you can do this easily using the custom solution posted in the following reply.
https://colorlib.com/wp/forums/topic/footer-copyright/#post-25758
Best Regards,
Movin