Title: apsltd's Replies | WordPress.org

---

# apsltd

  [  ](https://wordpress.org/support/users/apsltd/)

 *   [Profile](https://wordpress.org/support/users/apsltd/)
 *   [Topics Started](https://wordpress.org/support/users/apsltd/topics/)
 *   [Replies Created](https://wordpress.org/support/users/apsltd/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/apsltd/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/apsltd/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/apsltd/engagements/)
 *   [Favorites](https://wordpress.org/support/users/apsltd/favorites/)

 Search replies:

## Forum Replies Created

Viewing 14 replies - 1 through 14 (of 14 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Magento Wordpress Integration] Compatiable with 4.4.1?](https://wordpress.org/support/topic/compatiable-with-441/)
 *  Thread Starter [apsltd](https://wordpress.org/support/users/apsltd/)
 * (@apsltd)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/compatiable-with-441/#post-7020457)
 * Looks like 4.4.2. I’ll reinstall and try.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Display Posts from Specific Category(ies) on Page](https://wordpress.org/support/topic/display-posts-from-specific-categoryies-on-page/)
 *  Thread Starter [apsltd](https://wordpress.org/support/users/apsltd/)
 * (@apsltd)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/display-posts-from-specific-categoryies-on-page/#post-7071726)
 * Done and posting for anyone else that needs it. I had separated my arguments 
   instead of using &.
 * Works great now.
 *     ```
       <?php
       	if ( get_query_var('paged') ) {
       		$paged = get_query_var('paged');
       	} elseif ( get_query_var('page') ) {
       		$paged = get_query_var('page');
       	} else {
       		$paged = 1;
       	}
       	query_posts('category_name=accessories&paged='.$paged.'&posts_per_page=');
       	?>
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Display Posts from Specific Category(ies) on Page](https://wordpress.org/support/topic/display-posts-from-specific-categoryies-on-page/)
 *  Thread Starter [apsltd](https://wordpress.org/support/users/apsltd/)
 * (@apsltd)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/display-posts-from-specific-categoryies-on-page/#post-7071677)
 * Update.
 * I made a change to the code as follows. It seems to display the contents of the
   blog category and it’s children, but it is not paginating properly, as in when
   you click page 2 the same posts are there.
 * I’m not a php master, and I’ll keep digging, but any help is appreciated.
 * Thanks!
 * Here is the change:
 *     ```
       <?php } ?>
       	<?php
       	if ( get_query_var('paged') ) {
       		$paged = get_query_var('paged');
       	} elseif ( get_query_var('page') ) {
       		$paged = get_query_var('page');
       	} else {
       		$paged = 1;
       	}
       	query_posts('category_name=aps-sailing-blog', 'paged='.$paged.'&posts_per_page=');
       	?>
       	<div class="entry-content-wrapper bloglist-small">
       	<?php get_template_part( 'loop', 'blog' ); ?>
       	</div>
       </div>
       <?php
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Sidebars - Dynamic Sidebar Classic Widget Area Manager] Custom Sidebars causing 500 error](https://wordpress.org/support/topic/custom-sidebars-causing-500-error/)
 *  Thread Starter [apsltd](https://wordpress.org/support/users/apsltd/)
 * (@apsltd)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/custom-sidebars-causing-500-error/#post-6713631)
 * Hi duckonwater.
 * I haven’t heard anything but I’m using a new theme I’m developing so not sure
   I need this anymore.
 * If I do and have anything, I’ll post it here.
 * Thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Permalinks] Can I import Custom Permalinks in Bulk?](https://wordpress.org/support/topic/can-i-import-custom-permalinks-in-bulk/)
 *  Thread Starter [apsltd](https://wordpress.org/support/users/apsltd/)
 * (@apsltd)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/can-i-import-custom-permalinks-in-bulk/#post-6734650)
 * Anyone out thers with any info on this?
 * Thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Custom Post Template] Space for Sidebar still there. Theme Twenty Thirteen.](https://wordpress.org/support/topic/space-for-sidebar-still-there-theme/)
 *  Thread Starter [apsltd](https://wordpress.org/support/users/apsltd/)
 * (@apsltd)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/space-for-sidebar-still-there-theme/#post-6759366)
 * Hi,
 * The solution here is you have to change the reference to the content.php to something
   like content-full.php.
 * Then you add some thing like the following css to style.css:
 * .entry-header-full,
    .entry-content-full, .entry-summary-full, .entry-meta-full{
   margin: 0 auto; max-width: 980px; width: 90%; }
 * The you reference php like the following:
 *     ```
       <header class="entry-header">
       		<?php if ( has_post_thumbnail() && ! post_password_required() && ! is_attachment() ) : ?>
       		<div class="entry-thumbnail">
       			<?php the_post_thumbnail(); ?>
       		</div>
       		<?php endif; ?>
   
       		<?php if ( is_single() ) : ?>
       		<h2 class="entry-title"><?php the_title(); ?></h2>
       		<?php else : ?>
       		<h2 class="entry-title">
       			<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
       		</h2>
       		<?php endif; // is_single() ?>
       	</header><!-- .entry-header -->
       ```
   
 * With code referencing the full width entry elements:
 *     ```
       <header class="entry-header-full">
       		<?php if ( has_post_thumbnail() && ! post_password_required() && ! is_attachment() ) : ?>
       		<div class="entry-thumbnail">
       			<?php the_post_thumbnail(); ?>
       		</div>
       		<?php endif; ?>
   
       		<?php if ( is_single() ) : ?>
       		<h2 class="entry-title"><?php the_title(); ?></h2>
       		<?php else : ?>
       		<h2 class="entry-title">
       			<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
       		</h2>
       		<?php endif; // is_single() ?>
       	</header><!-- .entry-header -->
       ```
   
 * I hope this helps someone.
 * Kory
    [APS – The World Leader is Outfitter Sailors](http://www.apsltd.com)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Sidebars - Dynamic Sidebar Classic Widget Area Manager] Custom Sidebars causing 500 error](https://wordpress.org/support/topic/custom-sidebars-causing-500-error/)
 *  Thread Starter [apsltd](https://wordpress.org/support/users/apsltd/)
 * (@apsltd)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/custom-sidebars-causing-500-error/#post-6713461)
 * Thanks Bojan,
 * I will give this a try later today and update the forum.
 * Thanks again.
 * Kory
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Sidebars - Dynamic Sidebar Classic Widget Area Manager] Custom Sidebars causing 500 error](https://wordpress.org/support/topic/custom-sidebars-causing-500-error/)
 *  Thread Starter [apsltd](https://wordpress.org/support/users/apsltd/)
 * (@apsltd)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/custom-sidebars-causing-500-error/#post-6713344)
 * Actually, it makes all my WordPress /blog pages go blank.
 * Thanks again.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Remove /Blog/Category from WordPress permalink url in 4.2.4](https://wordpress.org/support/topic/remove-blogcategory-in-424/)
 *  Thread Starter [apsltd](https://wordpress.org/support/users/apsltd/)
 * (@apsltd)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/remove-blogcategory-in-424/#post-6446231)
 * Thanks Aram for the reply.
 * I am not very familiar with that file, at all actually. Do you have any specific
   recommendations on this setting?
 * I found this plugin I can use to remove the category:
 * [https://wordpress.org/plugins/remove-category-url/](https://wordpress.org/plugins/remove-category-url/)
 * But, I’m still stuck with removing the /blog out of [http://www.apsltd.com/blog/](http://www.apsltd.com/blog/)
 * I feel like I should clarify now also. This WordPress is installed in a subdomain
   to be the blog/content platford for our Magento website. I use James Kemp’s WMI
   to integrate them.
 * I hope that information helps to clarify our situation.,
 * Thanks,
 * Kory
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Remove /Blog/Category from WordPress permalink url in 4.2.4](https://wordpress.org/support/topic/remove-blogcategory-in-424/)
 *  Thread Starter [apsltd](https://wordpress.org/support/users/apsltd/)
 * (@apsltd)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/remove-blogcategory-in-424/#post-6446229)
 * Can anyone help out here?
 * Thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[NextGEN Gallery Optimizer] Next Gen Limiting to 2 columns. Set to 3. 3rd image shows on next row.](https://wordpress.org/support/topic/next-gen-limiting-to-2-columns-set-to-3-3rd-image-shows-on-next-row/)
 *  Thread Starter [apsltd](https://wordpress.org/support/users/apsltd/)
 * (@apsltd)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/next-gen-limiting-to-2-columns-set-to-3-3rd-image-shows-on-next-row/#post-6427549)
 * Thanks.
 * I see that too. The strange thing was that when I looked on Firebug, it showed
   100% and I don’t see any mention of the 604 px constraint.
 * I must’ve missed it.
 * Thanks for the info.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Hide Sidebar on a Category](https://wordpress.org/support/topic/hide-sidebar-on-a-category/)
 *  Thread Starter [apsltd](https://wordpress.org/support/users/apsltd/)
 * (@apsltd)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/hide-sidebar-on-a-category/#post-6428153)
 * I was doing in in page.php. Didn’t realize it should’ve been category.php but
   even then I’m dealing with .css issues.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Migration from Blogger redirects aren't working](https://wordpress.org/support/topic/migration-from-blogger-redirects-arent-working/)
 *  Thread Starter [apsltd](https://wordpress.org/support/users/apsltd/)
 * (@apsltd)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/migration-from-blogger-redirects-arent-working/#post-6393932)
 * I used a plugin as opposed to this method which worked perfectly.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Magento Wordpress Integration] WordPress not using Magento Theme and Question on Use of Blocks](https://wordpress.org/support/topic/wordpress-not-using-magento-theme-and-question-on-use-of-blocks/)
 *  Thread Starter [apsltd](https://wordpress.org/support/users/apsltd/)
 * (@apsltd)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/wordpress-not-using-magento-theme-and-question-on-use-of-blocks/#post-6379657)
 * Oh. I did not realize. Can you point me in the right direction by any chance?
 * I think once I wrap my head around it I’ll get it quickly, but I haven’t really
   even figured out how to get the blocks onto the pages. I tried to put the header
   call of:
 * // Echo full Magento head file
    the_block(‘head’);
 * Into the header.php, it didn’t do anything, but I don’t even know I’m on the 
   right track.
 * Thanks.
 * Kory

Viewing 14 replies - 1 through 14 (of 14 total)