Forum Replies Created

Viewing 20 posts - 1,381 through 1,400 (of 2,016 total)
  • Author
    Posts
  • in reply to: Double spaced category description #95580
    Pratik
    Participant

    @Edwin: To edit this part, you will need to create a child theme. For instructions on child theme, please follow this link: http://catchthemes.com/blog/create-child-theme-wordpress/

    Then make a file archive.php and add this code in it: http://pastebin.com/fm3aGeLX

    Then add following code in your child theme’s functions.php file: http://pastebin.com/xe6yRyME

    This will remove the prefix.

    To remove the double spacing use following code in Appearance=> Customize=> Theme Options=> Custom CSS box:

    
    .page-header {
        line-height: 2.0;
    }
    

    you can increase/decrease the 2.0 fraction as per required.

    Let me know how it goes.

    Regards,
    Pratik

    in reply to: Double spaced category description #95578
    Pratik
    Participant

    Can you post in with reference to the site url and url of the specific archive pages. I need to check them.

    in reply to: Display category posts as frontpage #95577
    Pratik
    Participant

    @moskito7:
    You can achieve this by going to “Appearance=> Customize=> Theme Options=> Homepage/Frontpage Settings”, then
    1. Check option Check to Enable Latest Posts on homepage
    2. Select required category/categories from Homepage posts categories

    Regards,
    Pratik

    Pratik
    Participant

    @ariannacaiazzo: The CSS you have added will be used for all images as your main body has classes .woocommerce .woocommerce img-page.

    Now, to limit the slider image and header image to 770px, try using following CSS code instead:

    
    #feature-slider img,
    #header-featured-image img
    {
        width: 770px;
    }
    

    Let me know how it goes.

    Regards,
    Pratik

    in reply to: Woocommerce amazon affiliate store #95574
    Pratik
    Participant

    @smoothiechode:
    1. Are there any features in this theme that allow you to easily customize the appearance of a store? If so, where are they?
    * You can change the layouts of the store by selecting required layout in Appearance => Customize=> Theme Options=> Layout Options=> Woocommerce Layout
    * You can also select different widgets for WooCommerce Pages by going to widgets page and adding different widgets in WooCommerce Primary Sidebar

    2. How can I add a slider to the top of my store that individually displays each of the 8 product categories and information for each? If this is not possible, is there any other way of making the product categories look more professional?
    This is not possible via Theme Options or via custom CSS. You will need to hire a customizer to achieve it or add plugin that achieves this.
    By more professional, can you let me know how you want it to look like, then I can provide you with custom css.

    3.Instead of having the ugly sidebar widgets that I currently have on the store displaying the product categories and featured content, how can I display these as thumbnails going across the page on each page on the store.
    I cannot understand what you mean by “thumbnails going across the page on each page on the store”. Do you mean a slider? Can you please elaborate this point a bit.

    4. How can I add picture icons in the footer of the store with information about shipping, global distribution service, customer service etc – something like the footer in this site
    You can achieve this by using Featured Content. There is an option to move featured content above footer in Appearance=> Customize=> Featured Content => Featured Content Options=> Check to Move above Footer
    for this purpose.

    i’ve been trying to change the color settings and it appears that I have accidentally changed the background in the store from white to light grey. This has left the product and product category pictures with a different colour to the background which looks bad as you can see here: http://www.tinderprofile.com/store.

    I checked the site and it has white background. May you have cache problem. Try clearing your cache, or try a different browser/device.

    in reply to: Header Image size #95573
    Pratik
    Participant

    I checked the site and it currently does not have a header image. You can use following code in Appearance=> Customize=> Theme Options => Custom CSS box:

    
    #header-featured-image .wrapper, #header-featured-image img {
    width: 100%
    }
    

    Let me know how it goes.

    in reply to: Bug with youtube #95572
    Pratik
    Participant

    @spespam: I tried the same link and it worked fine on the site. Can you post in your sire url where you have embedded the code. If you do not want to share your site url, then try deactivating all the plugins and see if the problem persists. If it does not ,try activating all the plugins one by one to find the culprit plugin.

    in reply to: insert adsense under the menu #95571
    Pratik
    Participant

    @spespam:
    Although the theme is same, different sites have different conditions due to plugins used. It will be better if you could provide me with the site so I cna check it the adsense code would work on the place where you want.

    in reply to: News ticker #95556
    Pratik
    Participant

    I am afraid thats not possible. Clean magazine Pro offers news ticker to be added via Post, Post Category or Custom News Ticker. If you wamt it via custom feed, you will need to hire a customizer.

    in reply to: Header Image size #95547
    Pratik
    Participant

    Can you post in your site url?

    in reply to: Bug with youtube #95546
    Pratik
    Participant

    Can you let me know how you embedded the video and the embed code?

    in reply to: insert adsense under the menu #95545
    Pratik
    Participant

    Can you post in your site url?

    in reply to: Reusing Gridalicious Pro #95513
    Pratik
    Participant

    @jillgeoffrion: Can you let me know what error messages to you get?

    in reply to: full frame theme not responsive #95116
    Pratik
    Participant

    @PL: I get following message:

    
    
    Wartungsmodus
    
    Sorry for the inconvenience.
    Our website is currently undergoing scheduled maintenance.
    Thank you for your understanding.
    
    
    in reply to: Reusing Gridalicious Pro #95113
    Pratik
    Participant

    @aarens11: You can just download the theme from your My Account page and upload it to your WordPress installation.

    in reply to: Featured Slider Customization issue #95111
    Pratik
    Participant

    @Nadia: Please post in your site url.

    in reply to: Reusing Gridalicious Pro #95063
    Pratik
    Participant

    @aarens11: You can use it as many times as you want. You do not need to repurchase the theme.

    in reply to: How to add parent indicators (arrows) on primary menu #95062
    Pratik
    Participant

    @smoothiechode: Can you try adding following css code in Appearance=> Customize=> Theme Options=> Custom Css box

    .menu-item-has-children a:after {
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        font-family: "Genericons";
        font-size: 16px;
        font-style: normal;
        font-variant: normal;
        font-weight: normal;
        line-height: 1;
        speak: none;
        text-align: center;
        text-decoration: inherit;
        text-transform: none;
        vertical-align: top;
    }
    .nav-primary  li,
    .nav-primary .menu-item:hover {
        position: relative;
    }
    .nav-primary .menu-item-has-children > a {
        margin: 0;
        padding-right: 2.25em;
    }
    .nav-primary .menu-item-has-children > a:after {
        content: "\f431";
        position: absolute;
        right: 0.625em;
        top: 0.8125em;
    }
    in reply to: full frame theme not responsive #95057
    Pratik
    Participant

    @PL: can you please post in your site url?

    in reply to: Featured Slider Customization issue #94936
    Pratik
    Participant

    @vlts:
    Php code will not work in widgets, you will need to add them in php templates. If you have no idea about how it is suppose to work, please hire a customizer.

    Regards,
    Pratik

Viewing 20 posts - 1,381 through 1,400 (of 2,016 total)