Support only during business hours : Monday to friday, from 8:30 am – 5:30 pm CEST

Due to the decrease in our staff due to vacations, our response time may be longer.

Be sure we're doing our best to manage your topic as soon as possible.

Riyaz

Forum Replies Created

Viewing 25 posts - 1 through 25 (of 34 total)
  • Author
    Posts
  • Riyaz
    Participant
    • 17 Topics
    • 51 Posts
    @riyazn

    I understand but how to change the color? I don’t want to delete it, i just need to change color of it to maintain combination to my style,
    Please send css with color code

    Riyaz
    Participant
    • 17 Topics
    • 51 Posts
    @riyazn
    This reply has been marked as private.
    Riyaz
    Participant
    • 17 Topics
    • 51 Posts
    @riyazn

    I followed the steps you mentioned but I couldn’t find the exact colors there, I tried changing the color but still its blue, I am sending my credentials in my next text, thanks

    Riyaz
    Participant
    • 17 Topics
    • 51 Posts
    @riyazn

    its kind different in my situation please look at this, I have turned to different but still it looks blue

    Riyaz
    Participant
    • 17 Topics
    • 51 Posts
    @riyazn

    I guess I have completed the customisation, hope you like it please do check https://riyazmn.com

    and thank you so much for such a amazing theme, its so flexible all over, very easy to customise if we get into it little depth, really enjoyed working with mandha theme, thank you

    Riyaz
    Participant
    • 17 Topics
    • 51 Posts
    @riyazn

    if anybody looking for single product page customise use this code in functions.php and you will get all freedom like post edit
    // enable gutenberg for woocommerce
    function activate_gutenberg_product( $can_edit, $post_type ) {
    if ( $post_type == ‘product’ ) {
    $can_edit = true;
    }
    return $can_edit;
    }
    add_filter( ‘use_block_editor_for_post_type’, ‘activate_gutenberg_product’, 10, 2 );

    // enable taxonomy fields for woocommerce with gutenberg on
    function enable_taxonomy_rest( $args ) {
    $args[‘show_in_rest’] = true;
    return $args;
    }
    add_filter( ‘woocommerce_taxonomy_args_product_cat’, ‘enable_taxonomy_rest’ );
    add_filter( ‘woocommerce_taxonomy_args_product_tag’, ‘enable_taxonomy_rest’ );

    Riyaz
    Participant
    • 17 Topics
    • 51 Posts
    @riyazn

    I can’t properly make it centre, I need to float everything in centre,
    I got some from google but they didn’t work

    /* Center product summary section */
    .single-product div.product div.images,
    .single-product div.product div.summary {
    margin: 0 auto;
    float: none;
    }

    it doesn’t work

    Riyaz
    Participant
    • 17 Topics
    • 51 Posts
    @riyazn

    if someone looking for sale remove badge use this css

    /* Add your CSS code here.
    
    For example:
    .example {
        color: red;
    }
    
    For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp
    
    End of comment */ 
    
    /* Onsale */
    .product-summary-wrapper .entry-summary .onsale{
    	transform:translatex(1175px) translatey(292px);
    }
    
    /* Product title wrapper */
    .product-summary-wrapper .entry-summary .product-title-wrapper{
    	transform:translatex(0px) translatey(-47px);
    }
    
    /* Post Title */
    #content .region__container .region__row #primary #main .product .product-summary-wrapper .entry-summary .product-title-wrapper h1{
    	width:489px !important;
    }
    
    /* Post Title */
    .entry-summary .product-title-wrapper h1{
    	transform:translatex(0px) translatey(0px);
    }
    
    /* Price */
    .product-summary-wrapper .entry-summary .price{
    	transform:translatex(0px) translatey(-12px);
    }
    
    /* Span Tag */
    .iconic-woothumbs-all-images-wrap--thumbnails-below .iconic-woothumbs-images-wrap span{
    	padding-right:15px !important;
    	min-height:38px;
    	transform:translatex(1072px) translatey(318px);
    }

    Happy coding 🙂

    Riyaz
    Participant
    • 17 Topics
    • 51 Posts
    @riyazn

    Ahh, it works, I managed customising the colors of font, thank you so much

    Riyaz
    Participant
    • 17 Topics
    • 51 Posts
    @riyazn

    Hi I have replaced plugin and added css, it works after clearing cache but not exactly like shown in demo theme, the font colors are not matching and didn’t properly showing as designed

    Riyaz
    Participant
    • 17 Topics
    • 51 Posts
    @riyazn
    This reply has been marked as private.
    Riyaz
    Participant
    • 17 Topics
    • 51 Posts
    @riyazn

    check this the search tab, I tried deactivating plugins but still I am seeing this, hope this too fixes on update, and how to update new update without affecting present theme in future

    Riyaz
    Participant
    • 17 Topics
    • 51 Posts
    @riyazn

    And as I noticed that its not compatible with Wp hide security plugin, if we activate it search tab wont work,
    Its not compatible with right click protection plugin, with this in customise it remove woocommerce and additional css options

    Riyaz
    Participant
    • 17 Topics
    • 51 Posts
    @riyazn

    You welcome,
    make sure that it works with plugin “woothumbs” only, woothumbs I used to customise products images its pretty good, works perfectly with Mandha,

    Riyaz
    Participant
    • 17 Topics
    • 51 Posts
    @riyazn

    hi there, I completely checked it, its theme that doesn’t support menu on mobile if we set for dropdown instead of drawer, I checked the mandha theme yours which is on themeforest, even that also doesn’t work if we click on account tab, check screenshoot and fix it soon both cart and account

    Riyaz
    Participant
    • 17 Topics
    • 51 Posts
    @riyazn

    aaaah I got it thank you,
    I used this on custom css plugin
    /* Image */
    .iconic-woothumbs-images div img{
    transform:translatex(0px) translatey(0px);
    border-top-left-radius:13px;
    border-top-right-radius:13px;
    border-bottom-left-radius:13px;
    border-bottom-right-radius:13px;
    }

    /* Division */
    .iconic-woothumbs-thumbnails div .iconic-woothumbs-thumbnails__image-wrapper{
    border-top-left-radius:13px;
    border-top-right-radius:13px;
    border-bottom-left-radius:13px;
    border-bottom-right-radius:13px;
    }

    Riyaz
    Participant
    • 17 Topics
    • 51 Posts
    @riyazn

    but I am seeing the reviews star on the product page still

    Riyaz
    Participant
    • 17 Topics
    • 51 Posts
    @riyazn

    Awesome, thanks so much, it works 🙂

    Riyaz
    Participant
    • 17 Topics
    • 51 Posts
    @riyazn
    This reply has been marked as private.
    Riyaz
    Participant
    • 17 Topics
    • 51 Posts
    @riyazn

    I have backup, feel free to do things, just remove the sold by label, big thanks

    Riyaz
    Participant
    • 17 Topics
    • 51 Posts
    @riyazn
    This reply has been marked as private.
    Riyaz
    Participant
    • 17 Topics
    • 51 Posts
    @riyazn

    ahhh and its everywhere, its on single product page, I just need to remove it from whole website

    Riyaz
    Participant
    • 17 Topics
    • 51 Posts
    @riyazn

    Thank you so much, it works

    Riyaz
    Participant
    • 17 Topics
    • 51 Posts
    @riyazn
    Riyaz
    Participant
    • 17 Topics
    • 51 Posts
    @riyazn

    I have managed it,
    And successfully launched my website please do check. I hope you get amazed, big thanks to mandha

    Home

Viewing 25 posts - 1 through 25 (of 34 total)

Troubleshooting Demo Imports

You're trying to setup your theme but you're experiencing errors when importing the demo content? Or you've just followed the setup guide but your website doesn't look exactly like our demo? These are common issues for which you can find easy and quick fixes.

Happy With our Support So Far?

Feel free to review our theme on Themeforest! It helps us making our products more known to new potential customers, which allow us more time to improve the quality and develop new features. #SharingIsCaring ❤️

Discover MatchPress

Skip • Like • Super-Like

Add powerful matching features like Member likes, skips, super likes, conditional private messaging and much more.

Setup Your Cera or Gwangi powered Community Website and Turn it into an iOS and Android App

15% discount for Cera users

To unleash the full power of your Cera or Gwangi theme, we have partnered with the Zipline team. Your community website can now be fully setup and turned into your very own custom app for iOS and Android.

Whether you've newly acquired the theme or already got your site up and running, Zipline got you covered. And we got you an incredible discount.

Holiday, Weather & Festive effects
to pimp your WordPress Site