bward
Forum Replies Created
-
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Stats Not WorkingI checked and there is nothing there, though I have received other Jetpack related emails. I filled out another support request at the link you advised. I also submitted a report through debug on my site last night as I was advised.
The report I just submitted was at 7:17pm CST.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Stats Not WorkingThanks for the reminder, but I did do that. I will keep an eye out for a response. Thanks again.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Stats Not WorkingNo problem. I did that initially and did not receive a response. I will go ahead and do that now via debug and reference this post.
Forum: Themes and Templates
In reply to: [Hemingway] Title as H2 and description as H3You are talking about your post or page titles I assume…
If so, for posts you will need to edit your single.php (for posts) file and for pages you will need to edit your page.php file.
As an example, here is the code in single.php for the title:
<h1 class="post-title"><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1>
You want to remove the <h1> tags both opening and closing, or in your case the <h2> tags. Replace with the
<strong>
tag if that is what you are after.Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Stats Not WorkingAppreciate the follow up supernovia.
Prod – https://worldeventsandthebible.com/
Dev – https://n19.2c4.myftpupload.comI did have another dev site, of https://9km.f7f.myftpupload.com, but that should not be in the mix here.
Let me know if you need anything else.
I figured it out. I was almost there. Hopefully this will help someone in the future. If your checkbox displays, but no text, you are probably missing some css like I was.
I added,
p.<strong>comment-subscription-form</strong> label { display: inline !important; margin-left: 0.5em; vertical-align: -1px; }
In bold was my css call, to call the text essentially.
Then I used the code below to customize the text.
function jeherve_sub_comment_text() { return 'Notify me of follow-up comments by email'; } add_filter( 'jetpack_subscribe_comment_label', 'jeherve_sub_comment_text' );
Forum: Themes and Templates
In reply to: [Hemingway] Issue When Updating ThemeI did what you said and updated the theme on our development site. It did keep our css, sort of.
I notice our blockquotes, blog title, post title and fonts overall are not picking up the “Lato” and “Raleway” fonts in Chrome. In Safari some fonts do carry over, about half.
I have been scratching my head for hours. Any ideas? Using browser dev tools are not helping much on this. I did notice my .post-content blockquote class is being overwritten by “.post-content blockquote:not(.wp-block-pullquote)“. I added the new syntax to my child-stylesheet and this did fix the blockquote issue, but not the font issue.
Our Production site is how the fonts should appear on the Dev site.
Dev
https://n19.2c4.myftpupload.com/2017/12/bible-verse-day-john-1558-2Prod
https://worldeventsandthebible.com/2017/12/bible-verse-day-john-1558-2Forum: Themes and Templates
In reply to: [Hemingway] Issue When Updating ThemeAnders, thank you, I really appreciate your support.
- This reply was modified 6 years, 5 months ago by bward.
Appreciate the follow up.
Yes, that is the plugin I was referring too. However, I thought Wordfence would override that plugin so I can use the Wordfence login services. That is not the case though.
I ended up re-directing wp-admin to another login system and Wordfence does become active for login attempts at that point. I believe our server provider is adding in the “Limit Login Attempts” plugin in a fashion where we cannot control it.
Steve you are a genius! I made a couple changes to fit what I was doing specifically, but this absolutely worked. Thank you, thank you, thank you!!!
Forum: Themes and Templates
In reply to: [Hemingway] Video Not Responsive Except On “Page”I resolved this a while back by adding this to my functions file. Hopefully, it will help someone in the future. Seems to cover everything we needed.
// Add Responsive To Embeds With CSS Class "video-container" function div_wrapper_video_container($content) { // match any iframes $pattern = '~<iframe.*</iframe>|<embed.*</embed>~'; preg_match_all($pattern, $content, $matches); foreach ($matches[0] as $match) { // wrap matched iframe with div $wrappedframe = '<div class="video-container">' . $match . '</div>'; //replace original iframe with new in content $content = str_replace($match, $wrappedframe, $content); } return $content; } add_filter('the_content', 'div_wrapper_video_container');
Mark, great follow up. Much appreciated.
I think you nailed it for me when you said, “WordPress’ default avatar feature relies on Gravatar”.
So you cannot use the WordPress “Avatar” feature without using the Gravatar service essentially. Even though I am hosting the image. That is too bad, but at least I understand and we have no issues.
Thanks so much.
- This reply was modified 6 years, 6 months ago by bward.
I notice the only place in my WordPress install where the words “Comments Off” are located is in the folder “wp-includes” and the file “comment-template.php”
if ( false === $zero ) $zero = __( ‘No Comments’ );
if ( false === $one ) $one = __( ‘1 Comment’ );
if ( false === $more ) $more = __( ‘% Comments’ );
if ( false === $none ) $none = __( ‘Comments Off‘ );From what I am seeing, I get a “Comments Off” indication when there are no comments on a post. If there are comments then the notification works correctly. Again with the plugin off I do not have any issues.
It seems the “$none” value is being inserted by the plugin for the comment count when the “$zero” field should be inserted.
How all that ties into the plugin is beyond me. I appreciate any assistance. Thank you.
Forum: Plugins
In reply to: [Beautiful taxonomy filters] Pagination ErrorJonathan, I just found this issue partly using 2.3.7.
We can paginate to:
https://worldeventsandthebible.com/bible-questions/archive/resource/featured
However, if we try navigating to:
https://worldeventsandthebible.com/bible-questions/archive/resource/featured/page/2
The page 404s.
We can however navigate to
https://worldeventsandthebible.com/bible-questions/archive
and paginate to
https://worldeventsandthebible.com/bible-questions/archive/page/2
So it seems when the taxonomy is added it breaks for version 2.3.7. Hopefully this will help you with the fix. Not sure how I managed to miss that during testing as this is on our live site.
Forum: Plugins
In reply to: [Beautiful taxonomy filters] Pagination ErrorLinrakesh, we are experiencing the same thing with version 2.4.1 on our Dev site.