Beth Soderberg
Forum Replies Created
-
Got it, thanks Nick! Very much appreciate your responses here.
Thanks Nick! I didn’t realize that comments to leads feature existed, but that is indeed the problem. When I have just “Create a lead when an approved comment is published” turned on everything works fine, it’s the “Replace the “Name” field on the comment form with “First Name” and “Last Name”” setting that causes the issue.
The theme does have the name/email field shown and with the “replace the name” setting enabled the comments do not work when those fields are filled out by the user.
I am going to check with my team and see if they are good with leaving the “replace the name” setting unchecked. Fingers crossed that is good with them. Thanks for your response to this question!
Forum: Themes and Templates
In reply to: using _'s but can't find the_contentHey foug, in underscores you can find
the_content
in the “template parts” directory. If you want to change the output of the front page feed, you’ll want to look at template-parts/content.php.Forum: Themes and Templates
In reply to: Css Responsive Problem – Genisis ThemeI’m sorry but as you are using a commercial theme, you need to seek support from the theme’s vendors.
https://www.studiopress.com/supportForum: Themes and Templates
In reply to: Comment Option Not ShowingI’m sorry but as you are using a commercial theme, you need to seek support from the theme’s vendors.
https://www.studiopress.com/supportForum: Themes and Templates
In reply to: an empty space between postsYou’re welcome! Please mark this ticket as resolved.
Forum: Plugins
In reply to: Testimonials Widget: Title FontCould you post a link to where you are trying to style the title tag?
Forum: Themes and Templates
In reply to: Hide website title and tagline in Custom Community theme?Could you provide a link to your site so that I can look at the source code?
Forum: Themes and Templates
In reply to: an empty space between postsThe link you provided does not work. Please post a new link if you still need help with this issue.
Forum: Themes and Templates
In reply to: WooCommerce Image Too HighI do not see the spacing issue on the page you sent or on any others that I went to on your site.
Forum: Themes and Templates
In reply to: Need help with making changes to cssCould you send a link to your site and more specific questions about what you are trying to change?
Forum: Themes and Templates
In reply to: [Minimatica] Changing Menu Font ColorCould you post a link to your site so I can see exactly what you are talking about?
Forum: Themes and Templates
In reply to: Black Menu Line – Make widerTo center the header, find this code in your style.css:
#branding img { border-bottom: 1px solid #000; clear: both; display: block; }
and replace it with this code:
#branding img { border-bottom: none; clear: both; display: block; margin: 0 auto; }
To run the black line across the entire white space, there are two parts of your CSS you need to modify.
FIRST find this code in your style.css file:
#wrapper { background: #fff; margin-top: 20px; padding: 0 20px; }
and replace it with this code:
#wrapper { background: #fff; margin-top: 20px; padding: 0; }
SECOND
#access { background: #000; display: block; float: left; margin: 0 auto; width: 940px; }
and replace it with this code:
#access { background: #000; display: block; float: left; margin: 0 auto; width: 1020px; }
Forum: Fixing WordPress
In reply to: adding border & link to imageCould you send a link to the site you are working on so I can look more closely at the source code?
To add a border, you need to add the following CSS to your style.css file:
a img {
border: 1px solid #333333;
}