Forum Replies Created

Viewing 20 posts - 1,941 through 1,960 (of 4,903 total)
  • Author
    Posts
  • Mahesh
    Participant

    @beauthai: It seems you’ll need to use plugins for this. Please find an appropriate plugin in https://wordpress.org/plugins/

    Regards,
    Mahesh

    in reply to: Hide Image from featured content and Banner Image in Header #105677
    Mahesh
    Participant

    @floh: Thank you for your appreciation. Happy Holidays! 🙂

    Regards,
    Mahesh

    in reply to: Change color menu like Background #105676
    Mahesh
    Participant

    @skynet: Do you mean the background color or menu text color? For background color. Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    #branding #access, #colophon #access-footer, #branding ul.menu ul a {
        background: #5c755e;
    }

    Regards,
    Mahesh

    in reply to: fixed header image on specific pages? #105675
    Mahesh
    Participant

    @em: Thank you. Well, you can use Entire Site, Page/Post Featured image option for this. Go to Dashboard=> Appearance=> Customize=> Header Image and select Entire Site, Page/Post Featured image in Enable Featured Header Image on option. Choosing this option sets featured image as header image in their respective pages. If page/post has no featured image, default header image will be displayed.
    Hope you understand.

    Regards,
    Mahesh

    in reply to: Issue with search box size on mobiles #105674
    Mahesh
    Participant

    @voodoochill: Thank you for letting us know. We’ll check and let you know. This will be fixed in the next update.

    Regards,
    Mahesh

    in reply to: child theme styles in tinymce advanced editor #105673
    Mahesh
    Participant

    @rvaalten: Have you checked Create CSS classes menu option in Editor Settings? If its disabled, add the following code in your child theme’s functions.php file and then check the option and see if this resolves the issue.
    add_theme_support('editor-style');

    Regards,
    Mahesh

    in reply to: Hide Image from featured content and Banner Image in Header #105631
    Mahesh
    Participant

    @floh: Please add the following CSS:

    a {
        color: #d2940f;
    }

    Regards,
    Mahesh

    Mahesh
    Participant

    @beauthai: Yes, it can be put in the theme’s functions.php. But on updating the theme, you’ll lose all the changes and you’ll have to do it again. That’s why child theme is recommended. And about other users using the theme, some wants the email field in the comment section, so removing it from the theme is not a solution. But if you don’t need one you can remove it with customization via child theme.
    And for the “submitting too quickly” issue, I guess that’s for the plugins. Try disabling the plugin if you have may be captcha plugin or something, and check if it resolves the issue.
    Please find the child theme in the link below, I’ve made the changes, activating the child theme will remove email field from the comment section.
    http://bit.ly/2hONpkg

    Regards,
    Mahesh

    in reply to: Hide Image from featured content and Banner Image in Header #105617
    Mahesh
    Participant

    @floh: Please replace the masthead CSS in your custom CSS with the following CSS:

    #masthead {
        background-image: url("http://www.dogz.at/wp-content/themes/catch-base/images/headers/bannerwork3.jpg");
        background-position: 50% 50%;
        background-repeat: no-repeat;
        background-size: cover;
    }

    For link color in footer, add the following CSS:

    #site-generator a {
        color: #ff00ff;
    }

    Note: Please choose the desired color.

    Regards,
    Mahesh

    in reply to: Hide Image from featured content and Banner Image in Header #105565
    Mahesh
    Participant

    @floh: You’ll need to disable the plugin. Please delete the plugin, the very plugin that you are using to have the under construction page through FTP or cpanel. Its the only way.

    Regards,
    Mahesh

    in reply to: iPhone Bug page disappears #105563
    Mahesh
    Participant

    @skynet: Sorry still can’t find what’s causing it. Its kind of strange. We’ll let you know as soon as we fix it.

    Regards,
    Mahesh

    in reply to: How to change Body width #105562
    Mahesh
    Participant

    @pietromessa: Nope. It will remain as it is. Only the changes that you’ve done to theme’s core file will be lost in update. That is why child theme is recommended for customization.

    Regards,
    Mahesh

    in reply to: header image not showing #105550
    Mahesh
    Participant

    @mbarina: Glad to know its fixed. Have a nice day!

    Regards,
    Mahesh

    Mahesh
    Participant

    @beauthai: If you want do not want to have email field on you comment section. 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 following codes.

    function wpb_disable_comment_email($fields)
    {
    	if ( isset( $fields['email'] ) ){
    		unset( $fields['email'] );
        }
    	if ( isset( $fields['fields']['email'] ) ){
    		unset( $fields['fields']['email'] );
    	}
        return $fields;
    }
    add_filter('comment_form_defaults','wpb_disable_comment_email');

    Regards,
    Mahesh

    in reply to: Featured Images #105544
    Mahesh
    Participant

    @mags: Glad to know that you’ve resolved it by yourself. Have a nice day!

    Regards,
    Mahesh

    in reply to: Author's name on posts #105543
    Mahesh
    Participant

    @wolpertinger: Thank you for your appreciation. The bug has been fixed and the updated theme is now live. Please update. Have a nice day!

    Regards,
    Mahesh

    in reply to: header image not showing #105516
    Mahesh
    Participant

    @mbarina: Are you using any plugins? If yes, please disable it and check if it resolves the issue. Let me know further.

    Regards,
    Mahesh

    in reply to: Author's name on posts #105515
    Mahesh
    Participant

    @wolpertinger: I checked your site. Seems the issue is because of the translation and the issue is seen only when German language is selected. For now, please use the translation files in the link below:
    http://bit.ly/29XXDNo
    Copy and paste the mo and po files inside clean-journal-pro/languages folder.

    The issue will be fixed in the next update.

    Regards,
    Mahesh

    in reply to: How to change Body width #105514
    Mahesh
    Participant

    @pietromessa: Well, its because the primary content’s width is 690px. Add the following CSS to fix it.

    #primary {
        width: 640px;
    }
      
    @media screen and (max-width: 1000px) {
        #primary {
            width: 100%;
        }
    }

    Regards,
    Mahesh

    in reply to: Hide tags at the bottom of my blog post #105512
    Mahesh
    Participant

    @juneh: It may be due to caching. This should work on all browsers.

    Regards,
    Mahesh

Viewing 20 posts - 1,941 through 1,960 (of 4,903 total)