otfromtot
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Share Buttons Adder] Google doesn't show imageDoes it work the same way as wordpress SEO plugin? It has the og meta stuff enabled there and it shows in the source code
Is it wordpress itself that can’t update or one of the woo products? If it’s a woo product you should contact them. Check there site for a manual download of the file, remove the old one and upload the new one and see if that fixes the issue
Forum: Plugins
In reply to: [Woopra Analytics Plugin] Version 2.3.3 Disables Site operationAwesome, that was the deciding factor on even trying this! Thanks guys
Forum: Plugins
In reply to: [Woopra Analytics Plugin] Version 2.3.3 Disables Site operationWell it’s on 2.4 now. Does that fix it?
Forum: Plugins
In reply to: [Genesis Post Teasers] Version 1.0.5 broke all of my sitesAwesome ^_^ I’m pretty sure I have it set for people to submit requests on things too. If not I’ll have that done within the week. I have a large number of sites I’m working on right now (15-20) so I’m a little behind schedule
Forum: Plugins
In reply to: [Genesis Post Teasers] Version 1.0.5 broke all of my siteshappy to help ?? I’m trying to start a wordpress help site. it’s pretty small still but as I come across things it’ll be getting bigger lol
https://www.kyledoesit.comForum: Plugins
In reply to: [Genesis Post Teasers] Version 1.0.5 broke all of my sitesI’m not all that great with php either. That little code actually took me a couple hours to get it working right, after spending half the day finding one that actually worked lol. But Once it’s configured it’s easy, and that’s basically the full config right there.
It makes it so it doesn’t cut off words, which looks terrible and gives you the [Read more] link directly under the text.Forum: Plugins
In reply to: [Genesis Post Teasers] Version 1.0.5 broke all of my sitesthis was my final code for it btw, added to page_blog.php
add_filter("the_content", "break_text"); function break_text($text){ $length = 630; if(strlen($text)<$length+10) return $text; //don't cut if too short $break_pos = strpos($text, ' ', $length); //find next space after desired length $visible = substr($text, 0, $break_pos); return balancetags($visible) . " <br><a href='" . get_permalink() . "'>[Read more]</a>"; }
Forum: Plugins
In reply to: [Genesis Post Teasers] Version 1.0.5 broke all of my sitesI threw it on my blog template page and the only problem I had was that my full width footer ended up at the 960 pixel width, which was caused by one of the blog posts having an open tag like
<div>
but not a close tag. It ended up being from a youtube video embed that was longer than the post output.
the fix was just adding<!--more-->
just above the video to put the wordpress default read more button.Have you tried to edit the template pages at all?
Forum: Plugins
In reply to: [Genesis Post Teasers] Version 1.0.5 broke all of my sitesYeah, I gave up already on this plugin and have started using stuff like this https://stackoverflow.com/questions/3147898/how-to-set-character-limit-on-the-content-and-the-excerpt-in-wordpress/18064708#18064708 so that I can get the same functionality.
Forum: Plugins
In reply to: [Genesis Post Teasers] Version 1.0.5 broke all of my sitesI just installed this and it will only show blog posts on the home page setting, but not the blog template setting. Any chance for an update or anything?
Forum: Plugins
In reply to: [FBF Facebook page Feed Widget] Remove PhotosAwesome, I will update that as soon as I get the chance. I was able to make my own fix that seems to work, but I haven’t tested it in older browsers.
<div id="fb"> [facebook_page_feed] </div> <style> #fb img { visibility:hidden; display:none; } </style>
This is used in unison with the widget shortcode plugin
Forum: Plugins
In reply to: [BuddyMobile] edit.phpthank you. that appears to have fixed the problem
Forum: Plugins
In reply to: [BuddyMobile] edit.phpI just tried on a non admin user and it still puts me in the wordpress style post panel. Is it because new users are made as Authors?
Forum: Reviews
In reply to: [YARPP - Yet Another Related Posts Plugin] not enough optionsI have all of the options open but it does not have what I am looking for. What I’m looking for is for a number of related posts to be shown while in the edit post area, and to be able to manually select what ones to show based on the list that the plugin generates.