Benoti
Forum Replies Created
-
Hi deepblue5,
As I told John, I’ve add some options to manage this in the last version. Make sure that you correctly choose the right options. You need to choose in same category and set the right taxonomy to follow.
Maybe there’s a problem with this, but I can’t reproduce this behaviour with my test. I only use WordPress functions to grab the next and previous items and really want to solve the issue if you can not solve it with this little advice.
Don’t hesitate to contact me via email for more details.Forum: Plugins
In reply to: [Brozzme Lightbox Blurb Module in Divi] demoSorry, but I don’t have demo link for divi plugins. I’m agree, images aren’t always enough, but, in this case, they are very simple and only a configuration panel to display the blurb image in a lightbox.
Forum: Plugins
In reply to: [Brozzme Product Navigation] Change TextThe text modification based on the above filters are available as setting options in Brozzme Product Navigation 1.3.0.
Forum: Reviews
In reply to: [Brozzme Product Navigation] Destroys product pageI just published an update of Brozzme Product Navigation (version 1.2.9).
You maybe need to save your settings.
Hope it works with this fix !
Forum: Reviews
In reply to: [Brozzme Product Navigation] Destroys product pageI have reproduce the bug with one install only. I found the solution to make it works.
I keep you in touch, but there will be an update of the plugin soon.
Thank a lot !
Forum: Reviews
In reply to: [Brozzme Product Navigation] Destroys product pageThanks for the details.
The plugin only use native woocommerce hook, and there’s no reason that its code breaks anything in your template. But, you are using different plugins that can use the same hook.
As I can’t test compatibilitty with each of them, it will be very usefull for me to detect which plugin interfers.
Can you try to run BPN and desactivate these plugins one by one : Woocommerce Customizer, Woocommerce Image Zoom, Divi Commerce.
When bpn runs fine, please give me the details, I will try to reproduce and fix with another priority.Do you use your own template to display products ?
Forum: Reviews
In reply to: [Brozzme Product Navigation] Destroys product pageOk, I take a look, with divi 3.0.17 and wp 4.7. I hope I can reproduce the bug and fix it very soon.
Are you trying to use the shortcode in the Divi builder ?
Do you think you have a plugin or something in the template that can break it ? Don’t hesitate to add more details about your activated plugins.
Thank a lot
- This reply was modified 7 years, 11 months ago by Benoti.
Forum: Reviews
In reply to: [Brozzme Product Navigation] Destroys product pageSorry to read this, but since you don’t give any details about this bug (wp, wc versions, theme), , I think, all your trouble might be caused by your theme or another plugin that hook the same actions.
This plugin only use official woocommerce hooks that are use in product template.
As your are (at this time) the only user that have this problem, I really like to reproduce such a bug.Hope you will reply to this message !
Best regards
Forum: Plugins
In reply to: [Brozzme Product Navigation] Change TextIf you want to make your changes in accordance with the future update
includes/brozzme_navigation_class.php on line 86 and line 87
to replace with
$previous_text = apply_filters(‘wc_bpnav_previous_text’, __(‘Previous’,’brozzme-product-navigation’));
$next_text = apply_filters(‘wc_bpnav_next_text’,__(‘Next’,’brozzme-product-navigation’));in your functions.php child-theme file
add_filter(‘wc_bpnav_previous_text’, ‘my_custom_previous_text’);
function my_custom_previous_text(){
return __(‘Previous’,’brozzme-product-navigation’);
}add_filter(‘wc_bpnav_next_text’, ‘my_custom_next_text’);
function my_custom_next_text(){
return __(‘Next’,’brozzme-product-navigation’);
}You can change the text-domain to another if you better like.
With this, all customization will still remains after update.Forum: Plugins
In reply to: [Brozzme Product Navigation] Change TextHello, I didn’t receive enotification of your message.
I haven’t intented this possiblity as my main use of the plugin was without text.
I will introduce soon a filter and an option to make the link customization available.
Waiting for this update, you can modify the file includes/brozzme_navigation_class.php on line 86 and line 87 (Be aware that all your modifications will be erase with the next update).
I hope the update can be made tomorrow or the day after tomorrow.
I keep you in touch!
Forum: Plugins
In reply to: [Brozzme Product Navigation] Next previous not workingHi Pierre,
A new release is available since 2 days.
There is new settings options about taxonomies that could fit to you.
thx
BenotiThe release version 1.2.0 is available. Hope everything will works fine for you.
Thx
Ok, sorry, I gave you the generic code, you must modify it like this :
$adjacent_tax = ‘product_tag’; // or product_cat or any new register tax slug
$previous_adjacent_post = get_adjacent_post(true,”,true, $adjacent_tax);
$next_adjacent_post = get_adjacent_post(true,”,false, $adjacent_tax);$previous_link = get_permalink($previous_adjacent_post->ID);
$next_link = get_permalink($next_adjacent_post->ID);A new release of the plugin with these changes (and new options) comes tomorrow (I hope).
Thx
I will make these modfications in the next version.
However, if you don’t want to wait, you can hook through get_adjacent_post (https://codex.www.ads-software.com/Function_Reference/get_adjacent_post). You will find the function used in brozzme_navigation_class.php line 40. Every arguments are empty or set to false. You will be able to choose the taxanomy you want to retrieve products (or posts).
get_adjacent_post( true, ”, true, ‘taxonomy_slug’ );Hope it helps you while you wait for an update !
BenotiForum: Plugins
In reply to: [Brozzme Product Navigation] Next previous not workingHi Pierre,
Sorry for the delay due to hollidays.
Can you tell me more about your problem. Which theme are you using ? Are you using the widget or the shortcode ? If you theme (or another plugin) hooks through an used hook, you will need the change the priority of it (get_adjacent_post is the main function to grab the next and previous product).
I know it’s a late answer but don’t hesitate to tell me
Thx Benoti