Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1308659

    I am wanting to take away both the left/right scroll option (on the right) and the box icon (on the left) that takes a person back to the main store part. (I have a method to my madness lol.) Attached is a picture to show you. I am running Ethos 3. Is there an easy fix for this??

    Website is http://www.remnantministriesonline.com.

    #1308693
    Joao
    Moderator

    Hi There,

    Please add the following code to Appereance > customizer > Custom > CSS

    .x-nav-articles {
        display: none;
    }

    Hope it helps

    Joao

    #1308720

    Thank you. We are half way there 🙂 But the left side box is still there. Is there any way I can remove that? Furthermore, is there any way it could be redirected to a different page, rather than to the default store page?

    #1308748
    Nabeel A
    Moderator

    Hi again,

    To remove the left button, add the following code in your Customizer:

    .entry-parent {
        display: none !important;
    }

    If you need to redirect it to some other page, add the following jQuery script in your Customizer via Appearance > Customize > Custom > Edit Global Javascript

    jQuery(document).ready(function($){
    	$('.entry-parent').attr("href", "http://remnantministriesonline.com/contact-us");
    });

    Don’t forget to clear your browser’s cache after adding the code. Let us know how this goes!

    #1308749

    I guess what would do the trick would be if I knew what the wording of the box icon on the left side…. Your thoughts?

    #1308751
    Nabeel A
    Moderator

    Hi again,

    Did you try the above code?

    Let us know if it works!

    #1308753

    Worked like a charm! THANKS!!!!

    #1308763
    Nabeel A
    Moderator

    Glad we could help 🙂

    Cheers!

  • <script> jQuery(function($){ $("#no-reply-1308659 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>