InHouse
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Comment respond form overlappingHey Oken, did you ever get this sorted out completely? I am having the same exact problem. I can give the class a top margin but if there is more than 1 reply, the overlap comes back. I don’t understand why the respond area doesn’t flow with the rest of the page. Thanks for anyone’s help.
Forum: Fixing WordPress
In reply to: Hide page on mobile themeThis seems pretty basic. It boils down to the fact that I need to “display: none” a specific page item (a page link) on my mobile style.css file. I was able to hide the entire navbar but when I tried to narrow it down to only one of the page links, I am unsuccessful. Can anyone help?
Forum: Plugins
In reply to: Display post/page in sidebarRight, that’s what I did and nothing was displayed. It isn’t working correctly. I tried various page_id and none work. I thought it was as simple as changing IDs but does something else need to change too?
Forum: Plugins
In reply to: Display post/page in sidebarHow would I change this to display a page instead of a post? Page ID=41 so I tried to change that and now nothing is displayed.
Forum: Plugins
In reply to: Display post/page in sidebarOMG, I was not even close to getting this to work… I can’t thank you enough. This is by far the most complicated thing I’ve attempted and I’m still a little unclear as to how it works but I will keep learning and now I have an awesome example to follow. Thanks a ton!
Forum: Plugins
In reply to: Display post/page in sidebarOk, so it should be
<?php $query = new WP_Query( 'page_id=38' ); ?>
or$query = new WP_Query( 'page_id=38' );
? I also tried the get_posts to no avail. Can you be more specific? I really appreciate the help. This is all I have in my sidebar:<div id="sidebar"> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar-Main') ) { ?> <?php get_posts( 'pagename=todays-specials' );?> <?php } ?> </div>
Forum: Plugins
In reply to: Display post/page in sidebarAlso tried
<?php get_posts( $query = new WP_Query( 'pagename=todays-specials' ); ?>
in sidebar.php and the sidebar is still blank. No background color or anything. Please help! Address is hereForum: Plugins
In reply to: Display post/page in sidebarAny idea if I’m doing this right and why it’s not working? Seems as though I have the code right, but I’m not sure if that goes in sidebar.php to display in the sidebar or where it should go?
Forum: Plugins
In reply to: Display post/page in sidebar@esmi, thanks so much for replying, but I’m so confused by this. I’ve read both pages multiple times and I think I learned a little, but what I’ve attempted has not worked. I am placing this in my sidebar.php file and this makes my sidebar disappear.
<?php get_posts( $query = new WP_Query( 'name=todays-specials' ); ?>
Forum: Plugins
In reply to: Display post/page in sidebarI’m sorry but I’m not sure how this would work to display a specific post or page. I could see how this would get a list of posts in a category, but I’d like to only show 1 post all the time. What would I need to add to sidebar.php? This is the first time I’ve really messed with anything like this before. Thanks for replying so quick too!
<?php get_posts( $args ); ?>Installed this plugin on a new website I’m building and upon activation, it deletes the content of the page. Simple About Us page text got replaced by the Like button. Previous issue on my other website was that it was interfering with the Like Box in my sidebar but this site is missing all the page content. I had to deactivate it. WordPress 3.1 and 4.4.
The upgrade to 4.4.2 didn’t change anything for me so I deactivated the plugin. I even re-installed. When you try to “activate the like button” within admin screen of plugin, and save, it confirms you saved but then the radio button is not checked anymore. And no like buttons on webpages. I am using WordPress 3.1. I liked the plugin but don’t have time to wait for a fix.
For anyone still searching, I found the solution. Check out this thread.
I also figured out how to link my Meteor-Slides plugin to open a full sized image in a NextGen lightbox. I had to edit the “meteor-slideshow.php” file to have it open a link in a lightbox. My solution was:
<a href="<?php echo get_post_meta( $post->ID, "slide_url_value", $single = true ); ?>" class="shutterset_website-filmstrip-images" title="<?php the_title(); ?>"><?php the_post_thumbnail( 'featured-slide' ); ?></a>
Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] integration with NextGenNevermind, I figured it out finally!
I had to edit the “meteor-slideshow.php” file to have it open a link in a lightbox. My solution was:
<a href="<?php echo get_post_meta( $post->ID, "slide_url_value", $single = true ); ?>" class="shutterset_website-filmstrip-images" title="<?php the_title(); ?>"><?php the_post_thumbnail( 'featured-slide' ); ?></a>
Ooohh, I had to edit the “meteor-slideshow.php” file to have it open a link in a lightbox. My solution was:
<a href="<?php echo get_post_meta( $post->ID, "slide_url_value", $single = true ); ?>" class="shutterset_website-filmstrip-images" title="<?php the_title(); ?>"><?php the_post_thumbnail( 'featured-slide' ); ?></a>