Forum Replies Created

Viewing 20 posts - 6,881 through 6,900 (of 12,027 total)
  • Author
    Posts
  • in reply to: Image Gallery #226701
    Skandha
    Participant

    @ddhoray: Hello there,
    The Gallery Section is only available in the pro version of the theme. I suggest you to upgrade to pro. You can check out the additional=features available in the pro version of the theme.

    KInd Regards,
    Skandha

    in reply to: Sections sorter does not work #226691
    Skandha
    Participant

    @abelcomplete-gmbh-com: Hello there,
    The issue has been fixed and a theme update will be released very soon. I will let you know when the update is released.

    Kind Regards,
    Skandha

    in reply to: Remove page and post title #226623
    Skandha
    Participant

    @litjby: Hello Lars,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    /* To remove post/page titles on top of the image */
    .custom-header .entry-title {
        display: none;
    }
    
    /* To remove previous/next box in posts */
    .single-post .navigation.post-navigation {
        display: none;
    }

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

    in reply to: Need help centering site logo #226622
    Skandha
    Participant

    @pworden1: Hello there,
    Yes the second code should replace the first.
    To edit the footer text you will need to upgrade to pro as Footer Editor Option is only available in pro version of the theme. You can check out the additional-features available in pro version of the theme.

    Kind Regards,
    Skandha

    in reply to: Theme Options #226621
    Skandha
    Participant

    @darek: Hello there,
    I have sent you an email. Please check your inbox.

    Kind Regards,
    Skandha

    in reply to: Hiding Home #226620
    Skandha
    Participant

    @fireflywebs: Glad I could help you out. Have a good day! 🙂

    Kind Regards,
    Skandha

    in reply to: CANNOT USE MENU SYSTEM IN LATEST UPDATE #226619
    Skandha
    Participant

    @mrcrm111: Thank you for your wonderful review Chris. Have a good day! 🙂

    Kind Regards,
    Skandha

    in reply to: Eliminate Rhomb Ornament #226617
    Skandha
    Participant

    @nathan-n: Hello Nathan, 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/cleanportfolio/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: Eliminate Rhomb Ornament #226614
    Skandha
    Participant

    @nathan-n: Hello Nathan,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .square {
        display: none;
    }

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

    in reply to: Demo Content #226612
    Skandha
    Participant

    @makedo: Hello there,
    Sorry for the late reply.
    To import the demo content you will need to use Catch Theme Demo Import plugin and Essential Content Types plugin.

    Install and Activate the plugin and
    Go to => Dashboard => Appearance => Catch Theme Demo Import => Select a Demo which you want to import and Click on Import

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

    in reply to: Bug in Travelore Pro, Premium WordPress Theme #226607
    Skandha
    Participant

    @121348-s-4109-road: Hello Randa,
    I checked the issue on line no you mentioned but did not find any. I could help you fix the issue if you explain it in detail.

    If you still want a refund please fill the form in this link addressing your issue.
    Kind Regards,
    Skandha

    in reply to: Footer blank white space #226588
    Skandha
    Participant

    @mrcrm111: Hello there,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    #post-8396 p, #post-8396 {
        margin-bottom: 0 !important;
    }

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

    in reply to: icon in event above image (pointy oval with a hole in center) #226538
    Skandha
    Participant

    @devilbluesrecords-com: Hello there,
    That icon identifies a location .
    To get rid of it
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    #events-section .entry-summary::before {
        content: unset !important;
    }

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

    in reply to: CANNOT USE MENU SYSTEM IN LATEST UPDATE #226537
    Skandha
    Participant

    @mrcrm111: 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/adventurous/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: CANNOT USE MENU SYSTEM IN LATEST UPDATE #226536
    Skandha
    Participant

    @mrcrm111: Glad the issue is resolved.

    Kind Regards,
    Skandha

    Skandha
    Participant

    @pworden1: Hello there,
    You will also have Footer Editor Option in pro version of the theme with which you can edit the footer text of your site. You can also check out the additional-features available in pro version of the theme.

    When you upgrade to pro all your customizer settings from the free theme should be retained by the pro theme. However the changes you have made in your child theme folder’s functions.php file should be copied to the functions.php of the child theme of the pro version that you will have to create.

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

    in reply to: Remove page and post title #226447
    Skandha
    Participant

    @litjby: Hello Lars,
    Do you mean to remove the single post/page titles on top of the image?
    Please let me know so that I can provide you with the necessary CSS Code.

    Kind Regards,
    Skandha

    in reply to: How to remove the "Category:" from the archive pages header #226445
    Skandha
    Participant

    @hr: Hello there,
    You can migrate your customizer settings from your parent theme to the child theme by using our Catch Import Export plugin. For instructions follow think link and click on the Instructions tab.

    There was a little bug with the code I provided you above.
    Please 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( '', false );
    
    } elseif ( is_tag() ) {
    
      	$title = single_tag_title( '', false );
    }
    
    return $title;
    
    });

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

    in reply to: Section Sorter is not working. I have pro #226424
    Skandha
    Participant

    @devilbluesrecords-com: Hello there,
    The issue has been fixed in the latest theme update. Can you please update your theme to version 3.3.2.
    Let me know if the issue is fixed.

    Kind Regards,
    Skandha

    in reply to: Newsletter + contact (right side) #226420
    Skandha
    Participant

    @ruberaroots: Hello there,
    You will need to edit the contact form you are using to create a form of the size you want.
    So,
    Go to => Dashboard => Contact => Contact Form => Edit the form you are using => Replace the existing code with the following Code.

    <div style="width: 50%; float:left; padding-right: 20px;">
    <label> Your Name (required)
        [text* your-name] </label>
    </div>
    <div style="width: 50%; float:left;">
    <label> Your Email (required)
        [email* your-email] </label>
    </div>
    <label> Your Message
        [textarea your-message 40x1] </label>
    
    [submit "Send"]

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

Viewing 20 posts - 6,881 through 6,900 (of 12,027 total)