Forum Replies Created

Viewing 15 replies - 46 through 60 (of 66 total)
  • Plugin Author Benoti

    (@benoti)

    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.

    Plugin Author Benoti

    (@benoti)

    Sorry, 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.

    Plugin Author Benoti

    (@benoti)

    The text modification based on the above filters are available as setting options in Brozzme Product Navigation 1.3.0.

    Plugin Author Benoti

    (@benoti)

    I 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 !

    Plugin Author Benoti

    (@benoti)

    I 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 !

    Plugin Author Benoti

    (@benoti)

    Thanks 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 ?

    Plugin Author Benoti

    (@benoti)

    Ok, 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.
    Plugin Author Benoti

    (@benoti)

    Sorry 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

    Plugin Author Benoti

    (@benoti)

    If 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.

    Plugin Author Benoti

    (@benoti)

    Hello, 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!

    Plugin Author Benoti

    (@benoti)

    Hi Pierre,
    A new release is available since 2 days.
    There is new settings options about taxonomies that could fit to you.
    thx
    Benoti

    Plugin Author Benoti

    (@benoti)

    The release version 1.2.0 is available. Hope everything will works fine for you.

    Thx

    Plugin Author Benoti

    (@benoti)

    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

    Plugin Author Benoti

    (@benoti)

    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 !
    Benoti

    Plugin Author Benoti

    (@benoti)

    Hi 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

Viewing 15 replies - 46 through 60 (of 66 total)