Take your website
To the next level
Discover our newly launched customization services and elevate your web projects to new heights.
Delegate tasks, save time, and unlock the power of professional WordPress outsourcing.

Okay
  Public Ticket #1810535
related products
Closed

Comments

  • designGCDS started the conversation

    Hello there.

    Where can I find and change number of coulmns posted on single product under product description?

    It seems it's 6 columns (.columns-6 class) and I'd like to change it to less.


    I cannot see it anywhere in both Theme and Woocommerce settings.

    Thanks in advance.

  •  7,095
    Oliver replied

    Hi,

    Add this code to the functions.php of the child theme:

    function thegem_woocommerce_output_related_products_args_new($args) {
        $args['posts_per_page'] = 4;
        $args['columns'] = 4;
        return $args;
    }
    add_filter('woocommerce_output_related_products_args', 'thegem_woocommerce_output_related_products_args_new', 999);
    

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  • designGCDS replied

    Thank you for your answer.

    It worked with inc/woocommerce.php file.

    Also it seems that footer ovveride option doesn't work with shop main page. Other options works fine like adding new banner, breadcrumbs etc.

    Can you post solution to this problem?

    Thank you.

  •  7,095
    Oliver replied

    Hi, sorry, not quite sure what do you mean. Can you pls provide more details with screenshots?

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  • designGCDS replied

    Hello again.

    I ment that you cannot set a custom footer on SHOP page, it still shows the default footer.

    More details in screenshot.

  •  7,095
    Oliver replied

    pls. provide the wp-admin 

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  •   designGCDS replied privately
  •   designGCDS replied privately
  •  7,095
    Oliver replied

    Hi,

    Yes, I see, we'll try to fix it in the next theme update.

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  • designGCDS replied

    Hello there again. I got yet another question.

    Any idea how to change colour of button and custom pagination on Rev Slider #29 Creative Agency?

    I've checked browsers code console and it seems that styles are inline so that points to rev slider dashboard settings, but when i try to edit button colour it doesn't work. The thing which is really weird is that prewiev shows the coulor i changed to.

    Thank you for your help.

  •  7,095
    Oliver replied

    HI!

    pls. use following css:

    body .custom .tp-bullet:hover, 
    body .custom .tp-bullet.selected {
        background: #e7ff89 !important;
    }
    body .rev-btn {
        background-color: rgb(231, 255, 137) !important;
    }

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  •   designGCDS replied privately
  •  7,095
    Oliver replied

    Hi,

    Add this code to the functions.php of the child theme:

    function thegem_remove_post_type_none_admin() {
        if( !current_user_can( 'administrator' ) ):
            remove_action('admin_bar_menu', 'thegem_admin_bar_site_menu', 100);
        endif;
    }
    add_action( 'init', 'thegem_remove_post_type_none_admin' );
    

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver