Forum Replies Created

Viewing 20 posts - 1,241 through 1,260 (of 4,903 total)
  • Author
    Posts
  • in reply to: Populate Slider Prior to Live Post #111171
    Mahesh
    Participant

    @dschwartzer: Well, its good to have child theme to do any customizations. But what required here cannot be customized through child theme. You’ll need to edit the theme file itself. What you need is, edit simple-catch/functions/panel/customizer/customizer-sanitize-functions.php file and edit function simplecatch_sanitize_post_id() replace
    return ( 'publish' == get_post_status( $post_id ) ? $post_id : false );
    with
    return ( ('publish' == get_post_status( $post_id ) || 'future' == get_post_status( $post_id ) ) ? $post_id : false );
    on line 96
    Note: Since the theme file itself is edited, please make sure you do this changes on every update.

    Regards,
    Mahesh

    in reply to: Remove Widget Side Bar from Simple Catch Theme Category #111170
    Mahesh
    Participant

    @tstack: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    .archive.category.category-24 #primary  {
        width: 100%;
    }
    
    .archive.category.category-24 #secondary  {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: Menu/submenu issue #111169
    Mahesh
    Participant

    @gcook: Sure. Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Missing static home page content #111167
    Mahesh
    Participant

    @mattbristow: Please change the theme to the WordPress core theme (Twenty Seventeen) and check whether the issue persists or not. If the issue persists, this is not a theme issue. Let me know further.

    Regards,
    Mahesh

    in reply to: Make content wider on page? Update Price? #111166
    Mahesh
    Participant

    @mindbank_2020: Please post in your site url.
    About the purchase and update.
    Once you’ve purchased the theme, it has the lifetime validity. But if you want regular updates, you’ll need to subscribe yearly. You can also skip a year and the continue subscription next year. You won’t receive any updates for the year you haven’t subscribed. And the price is same as the first one.
    Hope you understand.

    Regards,
    Mahesh

    in reply to: Compare sheet #111165
    Mahesh
    Participant

    @fireflywebs: For theme instructions and features, visit the link HERE.
    For Demo, check THIS

    Regards,
    Mahesh

    in reply to: Posts Page not showing the latest posts #111164
    Mahesh
    Participant

    @mscid76: Please post in you site url. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Homepage/Frontpage Settings and make sure, Check to Enable Latest Posts is checked, and select all the categories in the list.

    Regards,
    Mahesh

    in reply to: Creating in a subdomain #111163
    Mahesh
    Participant

    @jscott321: You can work with build the child theme now and keep working on the site (subdomain). Then after everything working properly, you can transfer both parent and child theme to the main site. Hope you understand.

    Regards,
    Mahesh

    Mahesh
    Participant

    @jscott321: The mobile menu uses tinynav javascript which handles the how mobile menu works. So its not possible to change it through CSS or php coding. You’ll need to do it through javascript. I recommend you to hire a customizer.

    Regards,
    Mahesh

    in reply to: Randomizing uploaded headers option #111160
    Mahesh
    Participant

    @abisbee: The feature is working fine on our server too. Do you get any error? Have you installed any plugins, please try disabling the plugins. Let me know further.

    Regards,
    Mahesh

    in reply to: How to reposition search box? #111159
    Mahesh
    Participant

    @heartland: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    @media screen and (min-width: 961px) and (max-width: 990px) {
      	#branding .searchform {
      	    top: 21.1em;
          }
    }
      
    @media screen and (min-width: 991px) and (max-width: 1024px) {
      	#branding .searchform {
      	    top: 22.3em;
          }
      }
      
    @media screen and (min-width: 1025px) {
      	#branding .searchform {
      	    top: 23.2em;
          }
    }

    Regards,
    Mahesh

    in reply to: Remove "Permalinkto:" flyer from the homepage #111158
    Mahesh
    Participant

    @uukuniemi: For this, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s functions.php add the codes from the link below:
    http://bit.ly/2mMrjhX

    Regards,
    Mahesh

    Mahesh
    Participant

    @alberocatch59: Are you using ani plugins? If so please try deactivating the plugins and check again. On our server, its all working fine. Let me know further.

    Regards,
    Mahesh

    in reply to: Missing static home page content #111095
    Mahesh
    Participant

    @mattbristow: Go to Dashboard=> Appearance=> Customize=> Homepage Settings=> Homepage/Frontpage Settings and make sure, Check to Enable Latest Posts is checked, and select all the categories in the list.
    Also , Dashboard=> Appearance=> Customize=> Static Front Page and make sure Your latest posts is selected. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Can't reset theme in live preview #111089
    Mahesh
    Participant

    @cyndavaz: Glad to know its working now. Have a nice day!

    Regards,
    Mahesh

    in reply to: Clean Education & WPGlobus (multilingual plugin) #111088
    Mahesh
    Participant

    @richpav: Please create child theme then, use apply_filter to post data through child theme. You can find more details on creating child theme HERE.

    Regards,
    Mahesh

    in reply to: footers, padding, text formatting, header photo height #111075
    Mahesh
    Participant

    @abisbee:
    1. Is there a way to go back to 3 footers, rather than 4? Not critical, but 4 looks too busy.
    -> Please use 3 footer areas and leave the one blank. It adjusts the width automatically.

    2. How can I reduce the padding at the top of the Content section? I’d like to reduce the white space between the text and the menu.
    -> Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    .site-content .wrapper,
    .main article {
        padding-top: 0;
    }

    3. How can I reduce the padding (top and bottom) of the footers?

    #site-generator {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    4. I have 2 links in the footer and I can’t get the font size to match the rest of the footer text. Why?
    Please clarify more.

    5. Checked your site, the footer has only one link -> Wellness Warriors

    6. How can I reduce the height of the banner photos. They just take up too much space.
    -> Please use image with less height.

    Regards,
    Mahesh

    in reply to: Disable "read more" button in Promotion Headline #111066
    Mahesh
    Participant

    @sschmeer: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Can't reset theme in live preview #111065
    Mahesh
    Participant

    @cyndavaz: Do you get any error? What is the feature that you’ve mentioned isn’t coming back. The reset is working properly on our sever. Let me know further.

    Regards,
    Mahesh

    in reply to: How to create a footer menu same as on demo? #111058
    Mahesh
    Participant

    @areounov: Go to Dashboard=> Appearance=> Menus then create a new menu, then add your desired items of footer menu. Then check on Footer Menu option in Menu Setting (Display Location) at the bottom. Then click Save Menu.

    Regards,
    Mahesh

Viewing 20 posts - 1,241 through 1,260 (of 4,903 total)