Forum Replies Created

Viewing 15 posts - 5,401 through 5,415 (of 8,657 total)
  • Author
    Posts
  • in reply to: Product Image and Product Gallery do not display correctly #53708
    wensolutions
    Keymaster

    Hello @paul614724,

    Please use below given CSS to fix the issue .

    .woocommerce-product-gallery figure {
        margin: 0;
    }

    Hope this helps .

    Best Regards!!

    in reply to: News section formatting is off #53706
    wensolutions
    Keymaster

    Hello @tknuteson,

    Please use below given CSS to solve the issue .

    For this go to Admin Panel > Appearance > Customize > Additional CSS and paste below given CSS.

    .inner-wrapper .news-post:nth-of-type(2n+1) {
        clear: both;
    }

    Hope this helps .

    Best Regards!!

    in reply to: Cart icon in header? #53705
    wensolutions
    Keymaster

    Hello @paul614724,

    To place the shopping cart icon along with the link you have to activate the child theme .

    You can even activate the child theme using the plugin given below .

    https://wordpress.org/plugins/wp-child-theme-generator/

    After activating the child theme in your child theme functions.php file paste below given code .

    https://gist.github.com/anonymous/3b457b1c15a6babbe2abba52170e0e0b

    Finally go to Admin Panel > Appearance > Customize > Additional CSS and paste below given CSS.

    .right-bar .cart-icon a:before{
        content: "\f07a";
        display: block;
        font-family: FontAwesome;
        font-weight: normal;
        line-height: 2.1;
    }
    
    .right-bar .cart-icon a {
        border: 1px solid #aaa;
        border-radius: 100%;
        display: inline-block;
        height: 33px;
        line-height: 1.7;
        margin-right: 0;
        padding: 0;
        text-align: center;
        vertical-align: middle;
        width: 33px;
        float: right;
    }
    
    @media( min-width: 768px ) {
    .right-bar .search-form {
    
    float: left;
    margin: 0 5px;
    
    }
    }
    
    @media( max-width: 768px ) {
    .right-bar .cart-icon a {
       margin:5px;
    
    }
    }

    Hope this helps .

    Best Regards!!

    in reply to: Please do have section on change log of themes #53704
    wensolutions
    Keymaster

    Hello @blackgelgmail-com,

    Please Make sure your theme license has not expire . If your license is expired then you wont be getting any updates of the theme and you have to renew your license .

    Also you can find the latest update of the theme in Dashboard > Updates . From here you will find the latest update of the theme .

    The change log of version 2.7 are:

    * Fix bbPress compatibility
    * Minor bug fixes

    Hope this clears up .

    Best Regards!!

    in reply to: Iframe Issue #53703
    wensolutions
    Keymaster

    Hello @rainbow_tj007,

    It does not work due to the reason given below :

    Refused to display ‘https://www.apple.com/’ in a frame because it set ‘X-Frame-Options’ to ‘sameorigin’.

    Only those third party websites that are provided with an iframe embed code to insert certain elements on their websites will work .

    So try with other website which has the iframe embed code.

    Hope this clears up the confusion .

    Best regards!!

    in reply to: price filter color #53690
    wensolutions
    Keymaster

    Hello @fatim,

    To change the color of different parts that you have mentioned use below given CSS .

    Go to Customize > Additional CSS and paste below given CSS.

    table.shop_table.cart thead {
        background: #0651ff none repeat scroll 0 0;
       }
    
    .service-block-inner > a {
        background: #132eff;
      }
    
     .woocommerce button.button, .woocommerce input.button {
      background-color: #1e06ff;
    }

    You can change the hex color code as per your requirement .

    Hope this helps .

    Best Regards!!

    in reply to: Distance between blocks of widgets #53689
    wensolutions
    Keymaster

    Hello @serv2003,

    Please use below given CSS .

    .p2p {
        clear: both;
        float: left;
        margin: 25px;
    }

    Hope this helps .

    Best Regards!!

    in reply to: Distance between blocks of widgets #53622
    wensolutions
    Keymaster

    Hello @serv2003,

    We would like to apologize for delay in replying to you .

    However when we inspected your site URL we found that you have not added the custom CSS we have provided so please once place the above given CSS in customize > Additional CSS and verify the issue .

    Let us know if the issue is solved or not .

    Best Regards!!

    in reply to: Product Image and Product Gallery do not display correctly #53621
    wensolutions
    Keymaster

    Hello @ paul614724,

    When we checked the theme locally we are unable to find such issue.

    So please once go to Woocommerce > Setting > products > display > Product Images and set the appropriate size of the product image and finally regenerate the image using the plugin such as given below .

    https://wordpress.org/plugins/regenerate-thumbnails/

    Hope this helps .

    Best Regards!!

    in reply to: Woocommerce Product gallery lightbox #53620
    wensolutions
    Keymaster

    Hello @paul614724,

    As currently there is no light box feature included in the theme you have to add below given code in your child theme functions.php file .

    You can even activate the child theme using the plugin given below :

    https://wordpress.org/plugins/wp-child-theme-generator/

    After activating the child theme in your child themes functions.php file please add below given code.

    add_action( 'after_setup_theme', 'travel_eye_pro_setup' );
     
    function travel_eye_pro_setup() {
        add_theme_support( 'wc-product-gallery-zoom' );
        add_theme_support( 'wc-product-gallery-lightbox' );
        add_theme_support( 'wc-product-gallery-slider' );
    }

    Hope this helps .

    Best Regards!!

    in reply to: Disable Plugin Nag Messages #53607
    wensolutions
    Keymaster

    Hello @tekiebelu,

    First of all thank you very much for buying the pro version and for all the appreciation .

    Now to disable the nag messages recommending the plugin you have to activate the child theme .

    You can also create the child theme using the plugin given below :

    https://wordpress.org/plugins/wp-child-theme-generator/

    After activating the child theme in your child themes functions.php paste below given code :

    function restaurantz_pro_child_remove_recommended_plugins(){
    
    	remove_action( 'tgmpa_register', 'restaurantz_activate_recommended_plugins' );
    }
    add_action('init', 'restaurantz_pro_child_remove_recommended_plugins');

    Hope this helps .

    Best Regards!!

    in reply to: Compatible plug in for classifieds #53598
    wensolutions
    Keymaster

    Hello @hjocelyn,

    The theme itself does not recommend any plugin . However you can try the plugins by yourself but it should be noted that we have not done any compatibility testing of the third party plugin with the theme so we cannot assure 100% compatibility .

    Hope this make sense .

    If you have any confusion related to the theme then please let us know .

    Best Regards!!

    in reply to: Iframe Issue #53597
    wensolutions
    Keymaster

    Hello @rainbow_tj007,

    Please share your site URL to inspect further .

    Hope you understand .

    Best Regards!!

    in reply to: Fix my website #53596
    wensolutions
    Keymaster

    Hello @centroscq,

    For the issue #2 that you have mentioned we have already released the update fixing the issue . So please update the your theme to the latest version and verify .

    As for the remaining issue we received your customization request and will reply through separate email.

    Thank you .

    Best Regards!!

    in reply to: How can i remove the black backgroung over the header photo ? #53592
    wensolutions
    Keymaster

    Hello @yanade1991,

    To remove the overlay effect in the header image use below given CSS.

    For this go to Admin Panel > Appearance > Customize > Additional CSS and paste below given CSS.

    section#banner-image .black-overlay {
        background-color: transparent;
    }

    Hope this helps .

    Best Regards!!

    Have a good day .

Viewing 15 posts - 5,401 through 5,415 (of 8,657 total)