Forum Replies Created
-
AuthorPosts
-
December 21, 2016 at 3:54 pm in reply to: Put in Name and Comment but get Error Asking For Name and Email, No Email Field #105690
Mahesh
Participant@beauthai: It seems you’ll need to use plugins for this. Please find an appropriate plugin in https://wordpress.org/plugins/
Regards,
MaheshDecember 21, 2016 at 10:15 am in reply to: Hide Image from featured content and Banner Image in Header #105677Mahesh
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,
MaheshMahesh
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,
MaheshMahesh
Participant@voodoochill: Thank you for letting us know. We’ll check and let you know. This will be fixed in the next update.
Regards,
MaheshMahesh
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.phpfile and then check the option and see if this resolves the issue.
add_theme_support('editor-style');Regards,
MaheshDecember 20, 2016 at 5:04 pm in reply to: Hide Image from featured content and Banner Image in Header #105631December 20, 2016 at 9:57 am in reply to: Put in Name and Comment but get Error Asking For Name and Email, No Email Field #105618Mahesh
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/2hONpkgRegards,
MaheshDecember 20, 2016 at 9:44 am in reply to: Hide Image from featured content and Banner Image in Header #105617Mahesh
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,
MaheshDecember 19, 2016 at 4:44 pm in reply to: Hide Image from featured content and Banner Image in Header #105565Mahesh
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,
MaheshMahesh
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,
MaheshMahesh
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,
MaheshDecember 19, 2016 at 10:20 am in reply to: Put in Name and Comment but get Error Asking For Name and Email, No Email Field #105547Mahesh
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.phpadd 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,
MaheshMahesh
Participant@mags: Glad to know that you’ve resolved it by yourself. Have a nice day!
Regards,
MaheshMahesh
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,
MaheshMahesh
Participant@mbarina: Are you using any plugins? If yes, please disable it and check if it resolves the issue. Let me know further.
Regards,
MaheshMahesh
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,
MaheshMahesh
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 -
AuthorPosts
