Forum Replies Created

Viewing 15 posts - 5,266 through 5,280 (of 8,657 total)
  • Author
    Posts
  • in reply to: resize slider logos #55731
    wensolutions
    Keymaster

    Hello @theyssef,

    The slider will adjust according to the image height that you have upload .

    So please upload the images according to your need . The slider will adjust its height according to the image you have upload also please upload the image of uniform size .

    Hope this helps .

    Best Regards!!

    in reply to: Changes to Testimonial Page header #55730
    wensolutions
    Keymaster

    Hello @1maryannem,

    Nice to know your issue has been resolved .

    Now to remove the background image only from specific page then you have to use below given CSS .

    body.custom-background .page-id-361 { 
        background-image: none;
        }

    But in above CSS you have to replace the page ID with the page ID of the page that you want to remove the background for .

    Hope this helps .

    Best Regards!!

    in reply to: Changes to Testimonial Page header #55641
    wensolutions
    Keymaster

    Hello @1maryannem,

    The updates will be available in your Dashboard > Updates and you can update it from there or you can manually by downloading the latest zip file of the theme .

    The instruction to change the title is mentioned above . Even if you directly modify the theme now it will be lost in next update of the theme so it always a good idea to make the change through the use of child theme .

    You can use below given code in your child theme functions.php file to import the setting of your parent theme .

    function yummy_pro_child_customizer_options_import() {
    
    if ( get_stylesheet() !== get_template() ) {
       add_filter( 'pre_update_option_theme_mods_' . get_stylesheet(), function ( $value, $old_value ) {
            update_option( 'theme_mods_' . get_template(), $value );
            return $old_value; // prevent update to child theme mods
       }, 10, 2 );
       add_filter( 'pre_option_theme_mods_' . get_stylesheet(), function ( $default ) {
           return get_option( 'theme_mods_' . get_template(), $default );
       } );
    }
    
    }
    
    add_action('init', 'yummy_pro_child_customizer_options_import'); 

    Hope this helps .

    Best Regards!!

    in reply to: Download Files #55629
    wensolutions
    Keymaster

    Hello @michaelnicki95,

    Please make the installation with the zip file you have got currently .

    After the installation continue to build the site . If you encounter any problem further then let us know .

    Also please refer to below official documentation for constructing the site.

    http://themepalace.com/instructions/themes/corpo-eye-pro/

    Hope this helps .

    Best Regards!!

    in reply to: Changes to Testimonial Page header #55618
    wensolutions
    Keymaster

    Hello @1maryannem,

    Please ignore above process . The update of the theme has been released fixing the issue of spelling mistake .

    So update your theme to the latest version and verify the issue .

    If there are any more quries then please feel free to post them .

    Best Regards!!

    in reply to: Length of text in Futures Slider in CorpoEye Theme #55617
    wensolutions
    Keymaster

    Hello @dmakedonskiy,

    The theme itself does not have the feature to control the words to display in the slider .

    However you can achieve what you want through the use of child theme .

    You can create the child theme using the plugin given below .

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

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

    add_filter('corpo_eye_filter_slider_caption_length', 'corpo_eye_child_slider_excerpt_length' );
    
    function corpo_eye_child_slider_excerpt_length(){
    
    	return 10;
    }

    You can set the no according to your requirement .

    Hope this helps .

    Best Regards!!

    in reply to: Featured Carousel #55615
    wensolutions
    Keymaster

    Hello @kitchentools,

    The theme has already provided the option for auto play for the featured carousel section .

    For this go to Admin Panel > Appearance > Customize > feature Carousel > Carousel Options and check the Option Auto play .

    Similarly you can even manage the transition time delay from here .

    Hope this helps .

    Best Regards!!

    in reply to: Background color CTA #55611
    wensolutions
    Keymaster

    Hello @kitchentools,

    Glad we could help you !!

    If you have any issues further, please feel free to post your queries and we will happily help you further.

    We will really appreciate if you could help us too by rating our theme in WordPress repo here:-

    https://wordpress.org/support/theme/clean-commerce/reviews/

    Best regards !!

    in reply to: How to Change Product Columns from 3 to 4 #55610
    wensolutions
    Keymaster

    Hello @hipnippers,

    Your quires has been answered below :

    Issue #1

    The no of the product that is displayed in the product page can be controlled . For this you need to go to Admin Panel > Settings > Reading > Blog page to show at most . From here set the no of product in such way that there does not remain any space at the bottom .

    Issue #2

    To increase the font size of the product title in single page use below given CSS.

    .single.woocommerce div.product .product_title {
        font-size: 35px;
        }

    Issue #3

    Yes you can definitely change the no. of column to 5 For this replace above given code with the code given below .

    add_filter('loop_shop_columns', 'easy_commerce_pro_loop_columns', 20);
    if (!function_exists('easy_commerce_pro_loop_columns')) {
    	function easy_commerce_pro_loop_columns() {
    		return 5; 
    	}
    }

    Also paste below given CSS in Additional CSS.

    .woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
        margin: 0 1.8% 15px 0;
        width: 18.05%;
    }
     

    Issue #3

    To change the button text from “Read More” to “Add to Basket” paste below given code in your child theme functions.php .

    add_filter( 'woocommerce_product_add_to_cart_text', 'woo_custom_cart_button_text' ); 
    function woo_custom_cart_button_text() {
    
    return __( 'Add to Basket', 'woocommerce' );
    
    }

    Hope this helps .

    Best Regards!!

    in reply to: Download Files #55603
    wensolutions
    Keymaster

    Hello @michaelnicki95,

    The Zip file is approximately of size 6.25 MB . So please again download it from the proper link provided to you and make the installation.

    Further more if you need any help or find any difficulty related to the theme then please let us know and we will help you further .

    Best Regards!!

    in reply to: Background color CTA #55597
    wensolutions
    Keymaster

    Hello @kitchentools,

    To change the background color of the CTA widget at left side use below given CSS.

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

    .cta-layout-2.clean_commerce_widget_call_to_action .cta-wrapper {
        background: rgb(16, 1, 1);
        }

    This will change the background color to black . You can change the color according to your need by changing the rgb value equivalent to hex color of your choice .

    Hope this helps .

    Best Regards!!

    in reply to: REmove the page title when viewing the page #55595
    wensolutions
    Keymaster

    Hello @lindaje,

    Yes do place the one menu item as per your requirement . The one menu item will be displayed at the right corner .

    Now to convert the menu item to button at first you have to include the class in CSS Classes (optional) field of that menu item by going to Admin Panel > Appearance > Menus .

    Please refer to below screen shot for proper info :

    https://image.prntscr.com/image/0PgvPXjzRu6nFPin-0GJJw.png

    After this place below given CSS in Admin Panel > Appearance > Customize > Additional CSS .

    .main-navigation ul li.button-style a {
        padding: 10px 10px;
        background: #ddd;
        margin-top: 20px;
    }
    
    .main-navigation ul li.button-style a:hover {
        background: #000;
        color: #fff;
    }

    Here change the Hex color code as per your requirement .

    Now to remove the page title use below given CSS.

    #custom-header h1.page-title {
        display: none;
    }

    Hope this helps.

    Best Regards!!

    Have a good day

    in reply to: Changes to Testimonial Page header #55593
    wensolutions
    Keymaster

    Hello @1maryannem,

    Thank you for letting us know about the issue .

    To change the title you have to go through the child theme .

    You can 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/84ccd3879a18fc51ee1b8da12d05c8ab

    Noe change the title as per you wish by changing the text in Line No : 28 .

    Hope this helps .

    If you need any help further then please let us know .

    Best Regards!!

    in reply to: Installation Guides #55587
    wensolutions
    Keymaster

    Hello @michaelnicki95,

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

    As for the guidance, you can refer to the theme official documentation given below .

    http://themepalace.com/instructions/themes/corpo-eye-pro/

    But if you find any difficulty while setting up any of the section then please let us know an we will help you further .

    Hope this helps .

    Best Regards!!

    in reply to: Event Manager #55526
    wensolutions
    Keymaster

    Hello @restaurant-ruble,

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

    To put the image on right use below given CSS in Customize > Additional CSS .

    .so-widget-restaurantz-featured-event .featured-event-widget-main-wrapper .event-highlight-section, .so-widget-restaurantz-featured-event .featured-event-widget-main-wrapper .event-details-section {
        float: right;
        
    }

    For second issue we will fix it in the coming updates of the theme .

    For third issue it is the feature of the theme itself. As much as we love to provide some custom code this id beyond the support we offer for our product .

    You can always consider hiring the professional developer for this and to do so please follow below link :

    http://themepalace.com/hire-a-customizer/

    Now for issue four , The day of the week is shown in the event as you can see in below screen shot :

    https://image.prntscr.com/image/Cz5I8ya_QMGTv0SX87MEXA.png

    If this not what you meant then please explain your query properly further .

    Hope this helps .

    Best Regards!!

Viewing 15 posts - 5,266 through 5,280 (of 8,657 total)