pocketmo
Forum Replies Created
-
I’m on Infinity Free hosting,, but it’s running PHP 7. I wonder if it’s the hosting causing it.
Following – I have the same issue.
Forum: Plugins
In reply to: [Gutenberg] Navigation gadget in FSE inoperableI have the same issue. Were you able to resolve it?
Forum: Plugins
In reply to: [PW WooCommerce Gift Cards] Warning message on product listing under priceWow – what a star -super quick response and an improvement on all my product listings. Your code resolved it. Thank you!
Forum: Plugins
In reply to: [WooCommerce] Product page loads slowlyCan I please ask how you resolved this. I have a WooCommerce site with similar issues.
Many thanks
PaulaForum: Plugins
In reply to: [Enhanced Media Library] Unable to set media category during upload[RESOLVED] I have it sorted. I was approaching it from the wrong place.
Forum: Plugins
In reply to: [Enhanced Media Library] Unable to set media category during uploadI have disabled and deleted various plugins, deleted and reinstalled enhanced media library and I am still unable to categorise on upload. My categories are created and saved but no joy with the media upload at all. I’d be very grateful of a a response if possible Web Bistro.
Forum: Plugins
In reply to: [Enhanced Media Library] Unable to set media category during uploadThank you for replying. I don’t have that version as far as I am aware . Mine is version 1.1.1. I think it may have worked initially but I can’t remember – I’ve been doing so much with images. It definitely isn’t working now anyway. I’ve deactivated recent plugins to check but still no joy.
Forum: Plugins
In reply to: [Enhanced Media Library] Unable to set media category during uploadI have the same problem. Is there a solution please?
Forum: Fixing WordPress
In reply to: Display full post on category pageForgot to mark the last post as resolved. Apologies.
Forum: Fixing WordPress
In reply to: Display full post on category pageI found it – it was in a file called content-magazine.php and I changed ‘the_excerpt()’ to ‘the_content()’.
Thank you for taking the time to look at it.
Forum: Fixing WordPress
In reply to: Display full post on category pageThis is the category.php code – I’m not sure if this is the correct file in terms of pulling in the posts:
<?php /** * @package xinmag * @since 1.0 */ get_header(); global $cat; //WP global variable if ( get_query_var('paged') ) $paged = get_query_var('paged'); elseif ( get_query_var('page') ) $paged = get_query_var('page'); else $paged = 1; ?> <div id="content" class="<?php echo xinwp_content_class(); ?>" role="main"> <?php if ( have_posts() ) { xinmag_content_nav( 'nav-above' ); xinmag_section_title(); $count = 0; while ( have_posts() ) { the_post(); if ( 1 == $paged && 0 == $count ) get_template_part( 'content' ); else { if ( 1 == $paged && 1 == $count ) { $color_class = "bgcolor_" . $cat; echo '<h2 class="section-more ' . $color_class . '">'; _e( 'More from ', 'xinmag' ); single_tag_title( '' ); echo '</h2>'; } get_template_part( 'content', 'magazine' ); } $count++; } xinmag_content_nav( 'nav-below' ); } elseif ( current_user_can( 'edit_posts' ) ) { get_template_part( 'content-none', 'index' ); } ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>