eganet
Forum Replies Created
-
Hello support link i see is this help forum. what support link are you reffering to? pls put link here
I am hidding the Shop Manager role which is a role from the WCFM Markeplace plugin.
Hello Kakon, thanks for reaching out.
Please find screenshot here: https://snipboard.io/fVyHg3.jpg
Unable to hide FunnelKit and Joast SEO
Thanks
OK, great! I will try this and let you know. Thanks
Great! Thanks.
No please, that’s not what I need. I want the duration to show in weeks. So if user selects 7 days to book on calendar, the result should show Booking duration: 1 week.
If user select 14 days, the result should show; Booking duration: 2 weeks
Get it?
This still doesn’t solve the issue because when you select dates, It shows: Booking duration: 7 days, I want it to show Booking duration: 1 week, or 2 weeks or 3 weeks etc. Not 7 days or 14 days etc. Can this be achieved? Thanks
Hello here’s the link to product page as requested: https://vivelae.com/product/semi-intensive-course/
Forum: Plugins
In reply to: [Extra Product Options for WooCommerce] Variables Price don”t change anymoreI am facing thesame issue. Any solution?
Forum: Fixing WordPress
In reply to: Fix Mobile Top Bar ProblemsNope not still working.
I have removed my custom css code to avoid conflict. Now you can see the default top menu.
The desktop view is OK. As you can see everything appears on a horizontal line:
Email. [email protected] | Tel. +34 671 285 735 Mi Cuenta (0) – €0The problem is with the Mobile screen. It appears like this:
<center>Email. [email protected] | Tel. +34 671 285 735</center>
Mi Cuenta
(0) – €0But I want it like this:
<center>Email. [email protected] | Tel. +34 671 285 735 </center>
<center>Mi Cuenta | (0) – €0</center>the wesite is: egacoupons.com
Forum: Fixing WordPress
In reply to: Fix Mobile Top Bar ProblemsHi wbcomdesigns, I have added the code but it’s still on the right. Code not working. Infact I don’t want to hide it. Seems your code is to hide it.
I just want the shopping cart to move to the left.Forum: Plugins
In reply to: [WooCommerce] How to add a line below category meta and social share buttonYes, I know but the problem I have is how to implement it.
Forum: Plugins
In reply to: [WooCommerce] Adding & ordering Hooks to Single Product Pagelorro thanks a million. It worked!!
Forum: Plugins
In reply to: [WooCommerce] Updating woocommerce breaks my themeI added the code below in my functions.php in the child theme. But no changes:
/**
* WooCommerce Extra Feature
* ————————–
*
* Change number of related products on product page
* Set your own value for ‘posts_per_page’
*
*/
function woo_related_products_limit() {
global $product;$args[‘posts_per_page’] = 6;
return $args;
}
add_filter( ‘woocommerce_output_related_products_args’, ‘jk_related_products_args’ );
function jk_related_products_args( $args ) {
$args[‘posts_per_page’] = 4; // 4 related products
$args[‘columns’] = 4; // arranged in 4 columns
return $args;
}