JacobHenderson5989
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Formatting content on Home pageSorry!!!
problem fixed!
I figured it out by clicking the button icon called (more)
this seperates the rows of content and allows me to use page breaks!Forum: Fixing WordPress
In reply to: Formatting content on Home pageForum: Fixing WordPress
In reply to: Search Bar in Nav MenuLucas, sir,
You are gentleman and a scholar.
Thank you for helping me with this issue.
Love,
Jake
Forum: Fixing WordPress
In reply to: Search Bar in Nav MenuLucas,
Thank you so much! This is as much effort towards completing this task as I have gotten.
Can you please tell me what I would need to do now, that my search bar is inside my nav bar?
I need it right justified and centered with the menu text.
Thanks again!!!
Jake
Forum: Fixing WordPress
In reply to: Widget titlesthank you
Forum: Fixing WordPress
In reply to: Widget titlesI’m sorry, the screenshot does not show up correctly.
Please visit https://www.whatwelivfor.com
you will see my problem on the right sidebar, third widget down.
I apologize for the inconvenience, but I would appreciate any insight.
thank you
Forum: Fixing WordPress
In reply to: Widget titlesOf course
https://www.whatwelivefor.com/wp-content/uploads/2014/06/Doc1.docx
It’s located on the right sidebar. Notice how the top widget title is plain white text.
The bottom is not.
Forum: Fixing WordPress
In reply to: Password Protected PageThe child theme is active, but I don’t see any php in the appearance editor. I just see my css
Forum: Fixing WordPress
In reply to: Password Protected Pageyes the child theme is active
Forum: Fixing WordPress
In reply to: Password Protected PageHow do I activate it?
Forum: Fixing WordPress
In reply to: Password Protected Pageit’s not working.
I cleared my cache and refreshed the page and it has not changed.
I don’t doubt your code. It is more than likely the way I have set up my funtions.php.
It is just a blank php file, with the above code posted in. Do I have to import the parent php as I did for css?
I’m so sorry, I am a novice.
Forum: Fixing WordPress
In reply to: Password Protected PageOkay,
So I have created a new .php file inside of my child-theme folder that also contains my style.css.
I pasted this inside of it.
<?php // Amend post password form function mytheme_password_form() { global $post; $label = 'pwbox-'.(empty($post->ID) ? rand() : $post->ID); $output = '<div class="password-form"> <p class="protected-text">' . __('This post is password protected. To view it, please enter your password below:', 'mytheme') . '</p> <form action="' . esc_url( site_url( 'wp-login.php?action=postpass', 'login_post' ) ) . '" method="post"> <p><label for="' . $label . '">' . __('S.L.E Code:', 'mytheme') . ' </label> <input name="post_password" id="' . $label . '" type="password" size="20" /> <input type="submit" name="Submit" value="' . esc_attr__('Submit', 'mytheme') . '" /></p></form></div>'; return $output; } add_filter('the_password_form','mytheme_password_form');
[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
then just click save changes. Is this right?
Forum: Fixing WordPress
In reply to: Password Protected PageJust to remind,
I am trying to change the word “password” located next to the password submit field to “S.L.E. Code.”
Forum: Fixing WordPress
In reply to: Password Protected PageI just did that and it does not seem to work.
here is my funtions.php
<?php // Amend post password form function mytheme_password_form() { global $post; $label = 'pwbox-'.(empty($post->ID) ? rand() : $post->ID); $output = '<div class="password-form"> <p class="protected-text">' . __('This post is password protected. To view it, please enter your password below:', 'mytheme') . '</p> <form action="' . esc_url( site_url( 'wp-login.php?action=postpass', 'login_post' ) ) . '" method="post"> <p><label for="' . $label . '">' . __('S.L.E Code:', 'mytheme') . ' </label> <input name="post_password" id="' . $label . '" type="password" size="20" /> <input type="submit" name="Submit" value="' . esc_attr__('Submit', 'mytheme') . '" /></p></form></div>'; return $output; } add_filter('the_password_form','mytheme_password_form');
[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
Forum: Fixing WordPress
In reply to: Password Protected PageI have created a child theme for my css.
Can you please explain to me how to create a child theme
for my php?I am sorry, I am confused.
Is it as simple as creating a blank php file inside my child theme folder and pasting in the code?