Free WP TP
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Activello] Shop Header or Image?Hi @angelamc,
Thank you for your question.
I did manage to add an image but the first line of products were stuck right up to it, making it look very messy.
Could you please share me the page URL from your site where it’s not displaying correctly so that i can troubleshoot it?
Kind Regards,
MovinForum: Themes and Templates
In reply to: [Activello] Add shopping cart icon/totalHi @angelamc,
I hope you are well today and thank you for your question.
You can try achieving this by creating a file colorlib-divilab-plugin.php in the wp-content/plugins directory of your WordPress install and add the following code in it then activate this Colorlib Plugin from the admin area of your site.
<?php /* Plugin Name: Colorlib Plugin Description: Quick Custom Solution Plugin for Implementing Custom Solution. Version: 1.0.0 Author: Movin Author URI: http://freewptp.com/ License: GNU General Public License (Version 2 - GPLv2) */ /** * Place a cart icon with number of items and total cost in the menu bar. */ function activello_woomenucart($menu, $args) { // Check if WooCommerce is active and add a new item to a menu assigned to Primary Navigation Menu location if ( !in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) || 'primary' !== $args->theme_location ) return $menu; ob_start(); global $woocommerce; $viewing_cart = __('View your shopping cart', 'dazzling'); $start_shopping = __('Start shopping', 'dazzling'); $cart_url = $woocommerce->cart->get_cart_url(); $shop_page_url = get_permalink( woocommerce_get_page_id( 'shop' ) ); $cart_contents_count = $woocommerce->cart->cart_contents_count; $cart_contents = sprintf(_n('%d item', '%d items', $cart_contents_count, 'dazzling'), $cart_contents_count); $cart_total = $woocommerce->cart->get_cart_total(); // Uncomment the line below to hide nav menu cart item when there are no items in the cart // if ( $cart_contents_count > 0 ) { if ($cart_contents_count == 0) { $menu_item = '<li class="menu-item"><a class="woo-menu-cart" href="'. $shop_page_url .'" title="'. $start_shopping .'">'; } else { $menu_item = '<li class="menu-item"><a class="woo-menu-cart" href="'. $cart_url .'" title="'. $viewing_cart .'">'; } $menu_item .= '<i class="fa fa-shopping-cart"></i> '; $menu_item .= $cart_contents.' - '. $cart_total; $menu_item .= '</a></li>'; // Uncomment the line below to hide nav menu cart item when there are no items in the cart // } echo $menu_item; $social = ob_get_clean(); return $menu . $social; } add_filter('wp_nav_menu_items','activello_woomenucart', 10, 2);Best Regards,
MovinForum: Themes and Templates
In reply to: [Activello] Post Title on Featured ImageHi @sunnysw,
I hope you are well today and thank you for your question.
In other words, replacing the slider with the featured image + title + category of the post.
Could you please tell me from which post you want to display it?
You can just assign only one post to the slider category so instead of slider it will be displayed as featured image.
Best Regards,
MovinForum: Themes and Templates
In reply to: [Sparkling] Image not on published pageHi Erik,
I hope you are well today and thank you for your question.
I have tested it on my test site and it’s working fine for me using latest version of Sparkling theme.
Could you please share me the page URL from your site where it’s not displaying correctly so that i can troubleshoot it?
Kind Regards,
MovinForum: Themes and Templates
In reply to: [Sparkling] Full length sidebar with sliderHi @nik2105,
I hope you are well today and thank you for your question.
The Sparkling theme displays slider in full width on home page so the sidebar is displayed below as shown here https://colorlib.com/sparkling/
This is the default functionality of this theme.
Best Regards,
MovinYou are most welcome π
Forum: Themes and Templates
In reply to: [Sparkling] Text editor doesn't workYou are most welcome π
Forum: Themes and Templates
In reply to: [Travelify] post "last updated" date instead of published dateYou are most welcome here π
If the above shared code is not working for you then please try using the below CSS code as described above.
#page .menu-item a.woo-menu-cart { display: none; }You can try using the above custom CSS code shared by @leland Fiege by adding the following CSS code in the Custom CSS option of your theme on the below path.
Admin Area -> Appearance -> Customize -> Dazzling Options -> Other -> Custom CSS
Hi @leland Fiegel,
I hope you are well today and thanks for helping out here in this forum.
Your help here is really appreciated.
Thanks,
MovinForum: Themes and Templates
In reply to: [Activello] Nested menu and menu orientationHi Britney,
I hope you are well today and thank you for your question.
This theme is built on Bootstrap and by default it doesnβt support third level of menu structure and one submenu is max so to achieve this you have to develop custom code by referring the solution posted in the following reply.
I would also like to set the orientation the same the webpage link provided above.
Do you mean you want to align the navigation menu in center?
Please advise.
Best Regards,
MovinForum: Themes and Templates
In reply to: [Travelify] Problem with Travelify mobile optimisationGlad it’s working fine for you now π
Please advise if you have more questions.
Have a fantastic day!
Forum: Themes and Templates
In reply to: [Activello] Static homepage creationYou are most welcome π
Forum: Themes and Templates
In reply to: [Travelify] Problem with Travelify mobile optimisationHi Tanya,
I hope you are well today and thanks for posting here.
Could you please try reverting the CSS changes that you made?
This can be due to plugin conflict on your site so please try temporary deactivating all plugins and see whether everything works fine and then enable the plugins one by one to see which plugin is conflicting if any.
If nothing above works then try deleting and reinstalling the latest version of Travelify theme.
Kind Regards,
Movin