hugodebe
Forum Replies Created
-
Forum: Plugins
In reply to: [Side Cart Woocommerce | Woocommerce Cart] Override TemplatesThank you very much, it works as expected!
Forum: Plugins
In reply to: [Abandoned Cart Lite for WooCommerce] User Roles and PermissionsHi Priyanka Jagtap, thanks a lot for the fast support.
My customer is starting the test of your plugin on a live website. After they have result they will decide if you can mention their website on your plugin page.
Thanks
HugoForum: Plugins
In reply to: [Abandoned Cart Lite for WooCommerce] User Roles and PermissionsHi Priyanka Jagtap, thanks a lot for your support. I was able to find a conflict with another plugin.
I tried on another install and I was able to confirm that shop_manager user role has access to the Abandoned Cart admin pages.
After disabling plugins one by one I was able to identify that SecuPress Pro (version 1.4.7) was blocking access to the Abandoned Cart admin pages for all user roles, except administrator.
After updating SecuPress Pro to version 1.4.9.3 everything works fine. As you explained, by default Shop Managers are able to access Abandoned Cart admin pages.
Everything is fine!
Thank you
HugoForum: Themes and Templates
In reply to: [Pinnacle] Page Navigation buttons on top of Blog pageProblem solved! Here is what Ben replied to me:
“ok, so not the grid then. A list and it’s set as the “posts page” in your settings reading. Which means it uses the “home.php” template.”
Forum: Themes and Templates
In reply to: [Pinnacle] Page Navigation buttons on top of Blog pageHi Ben, I sent you an email with the link.
Thanks
HugoForum: Plugins
In reply to: [Page Builder by SiteOrigin] Page Builder reverting to text editorHello everybody, to keep Page Builder working AND Rocket Loader active you can configure Page Rules in CloudFlare for both /wp-admin/ and preview pages, as described on that tutorial: https://www.onlinemediamasters.com/why-is-wordpress-so-slow/#page-rules
Same problems for me in Firefox. The UI is fine in Chrome.
I’ve added a quick fix to the css and I hope the next update will be compatible again with firefox.
#ga_main form #ga-events-inputs th { width: auto !important; } #ga_main form th { width: auto !important; } #ga_main td { max-width: 100% !important; } #ga-events-inputs td input { width: 100% !important; } #ga_main .click_table select { width: auto !important; }
Thanks
HugoForum: Plugins
In reply to: [Insights from Google PageSpeed] report not runningSame issue
I have same problem on all the websites where I use the plugin.
Forum: Themes and Templates
In reply to: [Pinnacle] Add a download button for images in wp galleryHi Kadence,
Some time ago, Ben mentioned a future theme update to add the
no-lightbox
class to kt_main.js.I’m currently loading an edited version of the script. I added the following to function.php into my child theme:
/** * Dequeue a script from Parent Theme */ function my_function_to_dequeue_script() { wp_dequeue_script( 'pinnacle_main' ); } add_action( 'wp_print_scripts', 'my_function_to_dequeue_script', 200 ); /** * Enqueue a script from the Child Theme */ function pinnacle_child_custom_scripts() { wp_enqueue_script('pinnacle_child_main', get_stylesheet_directory_uri() . '/assets/js/min/kt_main.min.js', array( 'jquery' ), '1.0', true ); } add_action('wp_enqueue_scripts', 'pinnacle_child_custom_scripts', 1000);
Into my child theme, I copy and edit kt_main.js (and kt_main.min.js) to replaced the following (line 54):
function kt_find_images() { $( 'a[href]' ).filter( kt_check_images ).attr( 'data-rel', 'lightbox' ); }
by this:
function kt_find_images() { $( 'a[href]' ).not('.no-lightbox').filter( kt_check_images ).attr( 'data-rel', 'lightbox' ); }
Please let me know if you see anything wrong.
To see the result, visit the following example page, scroll to the image gallery and click on the download button of any image. https://combibresil.com/volkswagen-combi-t1-split-bresil-1968-ref-c055/
Thansk
HugoThanks a lot Kevin for the quick response and the fast update last week. The problem was solved successfully. Thanks Kadence!
Forum: Plugins
In reply to: [Glue for Yoast SEO & AMP] Analytics are not being savedThis question has already been replied here.
The code you have to add is the following, a specific analytics code for amp pages:
<amp-analytics type="googleanalytics"> <script type="application/json"> { "vars": { "account": "UA-XXXXX-Y" }, "triggers": { "trackPageview": { "on": "visible", "request": "pageview" } } } </script> </amp-analytics>
Google help: https://developers.google.com/analytics/devguides/collection/amp-analytics/
Forum: Themes and Templates
In reply to: [Pinnacle] Add a download button for images in wp galleryHi Hannah, we bought VIRTUE Premium in 2016 for another website, that’s why I mentioned the website owner is a Kadence customer.
Hi Ben, I tried harder to make the fix work, with the help of an expert, but it is definitely not happening. I hope you will include the no-lightbox class in the next update.
It works well with this small edit in /pinnacle/assets/js/kt_main.js (line 55)
function kt_find_images() { $( 'a[href]' ).not('.no-lightbox').filter( kt_check_images ).attr( 'data-rel', 'lightbox' ); }
Thanks for your help
Forum: Plugins
In reply to: [Search & Filter] Display results with permalinks changed for “Tag base”Nan nan… c’est juste une particule! Mais je suis des montagnes aussi, plus du c?té des alpes ??
Let us know if it works for you.
Forum: Plugins
In reply to: [Search & Filter] Display results with permalinks changed for “Tag base”I added those lines to .htaccess and it looks fine now.
# BEGIN Options +FollowSymLinks RewriteEngine On RewriteRule ^tag/(.*)$ /mytagbase/$1 [R=301,NC,L] # END