cableghost
Forum Replies Created
-
@masonjames- I actually tried your plugin, however, it’s a bit quirky.
1. When your plugin calls for ‘settings’, you are using generic ‘settings’, instead of maybe ‘qa_settings’. Because of this, it conflicts with my theme, which is already using ‘settings’, and I’m sent to my theme’s settings page instead.
2. I was able to edit the plugin to qa_settings and able to reach the plugin settings page, howeer, the plugin did not function. Additionally, I don’t have time to continue editing the plugin after every update.
Forum: Fixing WordPress
In reply to: Featured post thumbnail in sidebar@atchymyth- I couldn’t figured how to get the current post, so that code didn’t work for me
David- neither code worked for me
I was able to show it using the following code…
<?php if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it. the_post_thumbnail( array(250,250)); } ?>Forum: Fixing WordPress
In reply to: Featured post thumbnail in sidebarThanks @atchymyth and David, I’ll give each a try and report back.
Forum: Installing WordPress
In reply to: WordPress 3.3.1 and the missing visual editorJust thought I would add my two cents…
I found a few of the solutions to temporarily help, however, the problem reappears, regardless…the Visual Editor section is blank.
This started occurring after installing 3.3.1; don’t think it occurred prior to.
After doing a complete browser uninstall and reinstall (FF 10.01), now I just need to close the browser and re-open it to regain access to the VE. Though a slight pain, at least its now accessible.
Forum: Installing WordPress
In reply to: WordPress 3.3.1 and the missing visual editorThis issue is not limited to mac’s, as I’m having the same issue on my PC (Windows 7 x64). However, it’s functioning mine on my iPad.
As @esmi pointed out, this appears to be an issue with the original install location and jquery.
Forum: Fixing WordPress
In reply to: WordPress RevisionsThanks. I realized it’s autosave; thanks for the thread link.
Forum: Fixing WordPress
In reply to: OL and UL not aligning properly placed adjacent to a floating divThanks for the reply. I’m certain my css code simply needs modification.
Forum: Fixing WordPress
In reply to: Sidebar Content Based on Post Meta TagsThank you; I’ll give them a try.
Forum: Fixing WordPress
In reply to: Add quotes using shortcodeI actually found a better solution, thanks to input and threads found on stackexchange and stackoverflow.
#1 Install TinyMCE plugin
#2 Create shortcode(s), if needed: wordpress-shortcode-tutorial-simple-to-advanced-part-1
#3 Add Functions.php code: how-do-i-add-a-tinymce-row-that-all-users-can-see-instead-of-just-admins
#4 Create JS file: #5 of wordpress-shortcode-tinymce-button-tutorial-part-2
Forum: Fixing WordPress
In reply to: Background image width and heightDetermined there is no way to ‘crop’ background images during load.
Thank you.
Forum: Fixing WordPress
In reply to: Style internal linksI had the syntax wrong…should be
a.internal{}Forum: Fixing WordPress
In reply to: Disply related posts in sidebar without pluginI try to code out functions, rather than always rely on plugins. Second, if I apply some custom code to the plugin, on update, my changes disappear. Example for this code would be to shorten the titles so they do not wrap.
I’m looking for alternate, and probably more efficient code than what I presented above?
Forum: Fixing WordPress
In reply to: Disply related posts in sidebar without pluginMy guess is that it’s not wise to run multiple loops. If that’s the case, could you recommend alternate code that would achieve the same result, plus not showing the current post?
Forum: Fixing WordPress
In reply to: Disply related posts in sidebar without pluginOkay, so it’s not as simple as just adding the following…
'post__not_in' => array($post->ID),Could you point me in the right direction?