Luke Rumley
Forum Replies Created
-
Looks like lines 714 and 737 right now, but I wouldn’t edit the plugin file for exactly the reason you describe. It doesn’t look like something you can necessarily hook into and fix via your functions.php file either.
BTW, there is a 4.2 folder now, so it is actually lines 718 and 741. If you feel you must edit the plugin:
Change
$link .= '(';
to
// $link .= '(';and
$link .= ')';
to
// $link .= ')';Forum: Plugins
In reply to: [Genesis Grid] disable grid loop class for sidebar widgetsGlad I found this thread! Great plugin, but yes, it conflicts with the Genesis Featured Post widget (or vice versa). Like @grantdesign said, the CSS should be:
.featuredpost .one-half { margin-left: 0; width: 100%; float: none; }…or in my case with three columns, I did:
.featuredpost .one-third { margin-left: 0; width: 100%; float: none; }It is such a powerful widget…hate to see it disappear (mostly cause then I’ll have to do the hard work of querying for featured images, etc).
Thanks again, Bill for this plugin (and your code snippets which Google leads me to often).
Forum: Plugins
In reply to: [GYS Themed Categories] Exactly what I want, but not quite working.Thanks for all the follow-up (while I was traveling last week), Josiah! I have to admit, I’m not actively developing this plugin in terms of features, though I am open to suggestions and even more open to people who want to contribute code!
I know exactly what you are saying with the theme options…it is really a big thing. Widgets are arranged per theme as well. I like what you’ve thought through, though there are lots things to think through and accommodate.
Forum: Plugins
In reply to: [GYS Themed Categories] 404 ErrorGlad you figured it out!
Sometimes just clicking “Save/Update” on the permalinks settings page will re-write your .htaccess file and solve problems.
Forum: Plugins
In reply to: [GYS Themed Categories] 404 ErrorI meant to disable and try the category page while the plugin is disabled. None of your categories work, which is strange.
I am wondering about your permalink settings, and your .htaccess file.
Forum: Plugins
In reply to: [GYS Themed Categories] 404 ErrorCan you disable the plugin first and try again, just to make sure that is the problem?
Can you provide a link to the site?
Forum: Plugins
In reply to: [Single Latest Posts Lite] Borders around thumbnailsAh, the plugin is putting it’s stylesheet at the bottom! Tsk tsk. http://codex.ww.wp.xz.cn/Function_Reference/wp_enqueue_style
Mallory, Jose’s last code should do what mine was trying to do.
Forum: Plugins
In reply to: [Single Latest Posts Lite] Borders around thumbnails.slposts-block-item{} applies to the <div> tag that contains your thumbnail images. The .slposts-block-thumbnail a > img {} that I mentioned styles <img> tags below that <div>.
You can just add this block to your custom CSS as well and you should be good:
.slposts-block-thumbnail a > img { border: 1px solid #000; padding 3px; }Forum: Fixing WordPress
In reply to: Small size image with extremely long loading timeI am guessing the speed has something to do with the server or the images themselves, but hard to know without seeing the site. Just to make sure it isn’t the PHP processing time, you could move that stuff to your stylesheet.
.category-4 #header { background:url('/path/img.jpg'); } .category-2 #header { background:url('/path/img2.jpg'); }Forum: Hacks
In reply to: xx.php in my public_htmlIt looks like it could be hacked. You could open one in a text editor to see if it looks legitimate. Probably time to change your (s)FTP password and your WordPress password. It could be a WordPress or a plugin vulnerability, but it’s hard to know.
Forum: Plugins
In reply to: [Single Latest Posts Lite] Borders around thumbnailsYes, edit these lines in style.css:
.slposts-block-thumbnail a > img { border: 1px solid #efefef; padding 3px; }to:
.slposts-block-thumbnail a > img { border: 1px solid #000; padding 3px; }If you want to get rid of the white between the image and the border, remove that padding line as well.
Yes, it is different per theme. You want to edit your style.css file, but you need to know what to style, which is dictated by the HTML. I often use the Chrome web browser and right-click on the form element I want to style to find out what classes or IDs are applied to it.
You can then search for those classes or generic form elements like “input,” “textarea,” etc and change “color: #777” or whatever it is to “color: #000;” for black.
Forum: Plugins
In reply to: [Comprehensive Google Map Plugin] jquerey error after wordpress 3.6 update@toringamerica, your cgmp.framework.min.js file still looks messed up to me, but it looks different enough from mine that I am unsure what to do other than replace the whole thing.
Feel free to grab http://www.thecenterforcd.com/wp-content/plugins/comprehensive-google-map-plugin/assets/js/cgmp.framework.min.js to replace toringamerica.com/wp-content/plugins/comprehensive-google-map-plugin/assets/js/cgmp.framework.min.js.
Then keep checking this thread, because the plugin author needs to fix this in a more thorough way. This is just a hack.
Forum: Plugins
In reply to: [Lightbox Plus Colorbox] Image resize not working – Version 2.4.6Update from my prior post: Using WordPress 3.5.2, LBP 2.6. On a single site, LBP resizes images correctly to fit the lightbox size. On the same versions, the network blog does not resize the photo, though the lightbox is sized to match the settings.
It does not seem to matter whether I activate on individual network blogs or network activate for all.
Any ideas?
Forum: Plugins
In reply to: Enable MyGeoPosition for custom post typesCheck Settings -> WP Geo -> Show Maps On: section and check the box next to your custom post type.
I have it working on a CPTs, and am trying to show a map of all the CPT entries on the CPT archive page…any tips there?