Forum Replies Created

Viewing 20 posts - 8,081 through 8,100 (of 12,027 total)
  • Author
    Posts
  • in reply to: Clean Box Pro Update #174859
    Skandha
    Participant

    @jason9617: Hello Jason,
    I just sent you an email. Please check it out.

    Let me know if this solves your issue.
    Kind Regards,
    Skandha

    in reply to: Demo Content #174851
    Skandha
    Participant

    @anama_ol: To setup Social Menu
    Go to => Appearance => Customize => Menus=> View All Locations => Social Above Primary Menu => Edit Menu => Add Items => Custom Links => Enter the URL and Link texts for the social icon you want.

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: How to delete the date in a new page #174835
    Skandha
    Participant

    @sandra-b: Hello Sandra,
    Please post in your site URL so that I can look into the issue.

    Kind Regards,
    Skandha

    in reply to: two page titles, want other away #174834
    Skandha
    Participant

    @bluesboy80: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .page #main .entry-title {
         display:none;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Editing Header and left side menu (pictures and links) #174833
    Skandha
    Participant

    @kiotys: Hello Kiotys,
    Please post in your site URL so that I can look into the issue.

    Kind Regards,
    Skandha

    in reply to: How to install Demo Content #174832
    Skandha
    Participant

    @lbc: Hello Luciano,
    I will email you the demo content files along with instruction on how to import them shortly.

    Kind Regards,
    Skandha

    in reply to: Events #174831
    Skandha
    Participant

    @2molaf: I will forward your suggestion to the development team and see what can be done. Thank you for the feedback.

    Kind Regards,
    Skandha

    in reply to: Code Editor Modifications #174829
    Skandha
    Participant

    @2molaf: I will look into the issue and get back to you soon.
    For the time being please use Classic Editor Plugin

    Kind Regards,
    Skandha

    in reply to: Euphony Pro Shortcodes #174759
    Skandha
    Participant

    @2molaf: Hello there,
    You will need to use Essential Content Types Plugin to use shortcodes.

    You can check out this article for more information.

    Kind Regards,
    Skandha

    in reply to: target a Modal instead of _self for content services #174757
    Skandha
    Participant

    @xdave: Hello David,
    You will need to add the class in line no 189 in service.php as well. Then the code will show up on your site.

    The doesn’t responsive though as when I switch to smaller screen the featured content and service section looks distorted.

    Kind Regards,
    Skandha

    in reply to: target a Modal instead of _self for content services #174748
    Skandha
    Participant

    @xdave: Hello David,
    Can you let me know on which line you added your class in service.php?

    Also can you let me know what you are trying yo achieve by add the class?

    Kind Regards,
    Skandha

    in reply to: Clean Box Pro Update #174743
    Skandha
    Participant

    @jason9617: Hello there,
    If your subscription has not expired you should find the downloadable theme file in your https://catchthemes.com/my-account/ page.

    Let me know if this helps you out!
    Kind Regards,
    Skandha

    in reply to: Menu on iPhone issue #174739
    Skandha
    Participant

    @psoup1965: Hello there,
    Please post in your site URL so that I can look into the issue.

    Kind Regards,
    Skandha

    in reply to: target a Modal instead of _self for content services #174692
    Skandha
    Participant

    @xdave: Hello David,
    I suggest you to always create a child theme before making any changes to the core theme files. If you directly make changes to the core theme file all your changes will be lost when you update the theme. So please create a child theme before making changes in theme files.

    To add fancy-frame to services section you will need to first create a child theme.
    You can use Generate Child Theme Plugin to create a child theme.

    You will need to copy the inc/service.php to the child theme folder and should have the same path.

    Then find post-thumbnail text and you add add the fancy-frame class there.

    As you increase the no of featured content the featured content posts will flow to the next row.

    Let me know if this helps you out!
    Kind Regards,
    Skandha

    in reply to: FEATURED CONTENT GRID FORMAT #174672
    Skandha
    Participant

    @theme: I checked your site and you seem to have only 5 posts in the Featured Content Section. Can you let me know how many items you have selected for the Featured Content Section?

    Also the theme has only upto 4 columns but you seems to have 5 columns in featured content section. Did you change it?

    I’m afraid it is not possible to have grid layout in the featured content. For that you will need to get your site customized. I suggest you to hire a customizer.

    Kind Regards,
    Skandha

    in reply to: Change wording of Category in archive section #174669
    Skandha
    Participant

    @jennifersimsdesign-com-au: Hello Jennifer, I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/solid-construction/reviews/#new-post
    Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated. Thanks, and if there’s anything else at all that I can do to help, don’t hesitate to let me know. Have a good day! 🙂

    Kind Regards,
    Skandha

    in reply to: Problem with Top Page – Bug? – Cant' Edit #174659
    Skandha
    Participant

    @rick-lopes: Hello there,
    Can you let me know which page are you talking about?

    Kind Regards,
    Skandha

    in reply to: Not able to add services #174650
    Skandha
    Participant

    @wmiqdad: After you activate Essential Content Type Plugin you will find a Services tab in the dashboard. You will need to add all your Services posts there. After you’re done
    Go to => Appearance => Customize => Theme Options => Services and Select the Services Posts

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Menu dropdown background colour #174649
    Skandha
    Participant

    @rwilkin: Hello there, I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/fotografie/reviews/#new-post
    Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated. Thanks, and if there’s anything else at all that I can do to help, don’t hesitate to let me know. Have a good day! 🙂

    Kind Regards,
    Skandha

    in reply to: Change wording of Category in archive section #174644
    Skandha
    Participant

    @jennifersimsdesign-com-au: Hello Jen,
    Go to => Child Theme folder => functions.php and add the following Code.

    add_filter( 'get_the_archive_title', function ($title) {
    
        if ( is_category() ) {
    
                $title = single_cat_title( 'Section: ', false );
    
            } elseif ( is_tag() ) {
    
                $title = single_tag_title( '', false );
            }
    
        return $title;
    
    });

    This should remove the Category text.
    Let me know if this works out!
    Kind Regards,
    Skandha

Viewing 20 posts - 8,081 through 8,100 (of 12,027 total)