hugodebe
Forum Replies Created
-
Muito obrigado pelos esclarecimentos e parabéns pelo trabalho.
Esse plugin vai virar o novo e único plugin obrigatório para lojas brasileiras!
Abraço
Muito obrigado pela atualização rápida. Testei a nova versão e funcionou como esperado.
Parabéns pelo trabalho! Esse plugin vai virar a novo plugin obrigatório para loja brasileiras!
Abraço
Ok, ficamos no aguardo.
Muito oobrigado.
Hugo
Forum: Plugins
In reply to: [Super Page Cache] wp-config.php wipedI’ve experienced the same thing yesterday, after updating some plugins. Switching from Memcached to Redis solved the problem for now. The server is Litespeed.
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: http://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-lightboxclass 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. http://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!