childthemestyles
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Speculate] Accessibility EnhancementsHi Alex thanks for point out us we will update it Thanks
Forum: Themes and Templates
In reply to: [Speculate] Featured images not full width?Hi wendyweetwaarom
can you share your screenshot with us
Forum: Themes and Templates
In reply to: [Transference] Header Image SizeHi there sorry for inconvenience. Can you share screenshot with us that we will help
ThanksForum: Themes and Templates
In reply to: [Twenty Seventeen] Redirect to Home page after email is sent.Thanks for the update….and the good news 🙂
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Redirect to Home page after email is sent.No worries…sometimes strange things like that happen out of the blue….what is important is that it’s working now.
Cheers,
AndreForum: Themes and Templates
In reply to: [Twenty Seventeen] Redirect to Home page after email is sent.Perhaps this might help with a screenshot of changing the link attributes…select the link in the page for the email:
Uncheck the box next to “Open Link in a new tab”.
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Redirect to Home page after email is sent.With the editor on the “Visual” tab, select the my email text and then click the pencil icon to Edit. Then click on the cog icon for Link Options. Look for the setting “Open link in a new tab” and uncheck the box next to it (if it’s checked). Once done, click the “Update” button to save it and close the popup window. Save your page.
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Redirect to Home page after email is sent.Open the page in the editor where the contact form is and on the editor, click on the “Text” tab of it and you should see it there.
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Redirect to Home page after email is sent.You are very welcome. As for the removing of the target, that is not in the style.css but in the page where your contact form is. Open that page and then delete the email link which is now in an H3 tag as I can see.
cheers,
AndreForum: Themes and Templates
In reply to: [Twenty Seventeen] Redirect to Home page after email is sent.It’s because you have a target on the mail link which means when someone clicks on it, to open a new browser tab or window:
<p><a href="mailto:[email protected]" target="_blank" rel="noopener">[email protected]</a></p>Remove the target=”_blank” from the line.
**I didn’t add your email above so you don’t get spammed from here 🙂
As for a redirect after submitting email, this won’t work because it’s using an external application. However, I would recommend not using an “email address” link as this is easily picked up by bots and you could potentially see a ton of spam. The contact form should really be enough as it’s more flexible and more secure from that kind of thing. Ayone using the contact form is still technically using email….just in a different way.
I thought I would drop by and help out, although looks like it’s been a week since you posted. Were you able to get things solved? Ideally, it’s best to have a link to your site and then I could see it and test it with Google.
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Page and post title issues in 2017Normally I Would say use a plugin, but the one plugin that I used to recommend is no longer alive. To do this manually, you will want to target the pages by their ID’s. Look at the source code of the page and find the page-id in the body tag, or, when in your admin, go to pages and mouseover the page title…look at the bottom of your browser window and look for the id number. Then, you can do this:
.page-id-1 .entry-title { display:none; }You can other pages to that like this:
.page-id-1 .entry-title, .page-id-2 .entry-title, .page-id-3 .entry-title { display:none; }So in your case and using your front page as an example:
.page-id-141 .entry-title { display:none; }But to confirm, you don’t want page titles showing anywhere except on blog post summaries and the full post view?
I just went to your website, but do not get that error message. Perhaps it was a temporary problem that is now fixed, or did you solve it?
Basically when an error says “Cannot redeclare”, it means that something was added that is a duplicate function.
I am curious though about this “my_remove_menu_icons()” function on line 570 of your functions.php file; there is no function like this in the twenty seventeen’s function.php file…..was it something you added?
UPDATE: I noticed you did another post and there I saw the error. But am I correct in assuming you want to get rid of all svg code and icons from your theme? If so, this might help…
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Color menu bar and textYou are very welcome.
Cheers,
AndreForum: Themes and Templates
In reply to: [Twenty Seventeen] Color menu bar and textNot quite sure what you are wanting, but this might help:
/* makes menu items white */ .main-navigation a:link { color: white; } /* active and hover */ .main-navigation .current_page_item > a, .main-navigation a:hover { color: black!important; }**Hex colour values
For the colour white, you can also use (recommended) #ffffff
For black, #000000