jimleeder
Forum Replies Created
-
Forum: Plugins
In reply to: [Photoswipe Masonry Gallery] Get rid of the white space around each imageThat has got rid of the horizontal gap between pics, thanks. However there is still a vertical gap between rows. How can I remove this please?
Forum: Plugins
In reply to: [WooCommerce] How to add a payable option to a product?Cheers, it looks good ??
Forum: Plugins
In reply to: [WooCommerce] Edit e-mail based on product titleHow do I get the product name from this please?
Forum: Plugins
In reply to: [Comment Guestbook] Recaptcha?Am using Akismet which at least detects the spam and stops it appearing in the main folder, but would be nice to have a recaptcha field.
Forum: Plugins
In reply to: [Cactus Masonry Classic] Left alignThat sounds good, could you post on here when its fnished? Cheers ??
Forum: Plugins
In reply to: [Cactus Masonry Classic] Left alignI found where to disable it and tested, but thats not whats required. The masonry effect with proper uninterrupted horizontal viewing is required.
Forum: Plugins
In reply to: [Cactus Masonry Classic] Left alignI’m listing them via date, and its on my localhost so won’t be able to link. What do you mean by disabling it? Where do you do that?
Forum: Plugins
In reply to: [Cactus Masonry Classic] Moving the title and excerptHave fixed this with a max-width on the container for each post.
Forum: Plugins
In reply to: [Cactus Masonry Classic] Moving the title and excerptAdding that custom CSS makes the images go massive and messes up the layout, even with the size set to thumbnail.
My shortcode is set to – [cactus-masonry quality=”thumbnail” display_post_titles=”true” display_post_excerpts=”true” horizontal_spacing=”5″ vertical_spacing=”5″]
EDIT: Weirdly its ok for the 1st one, but not with the other posts
Forum: Plugins
In reply to: [Cactus Masonry Classic] Can this plugin show posts horizontally?Ignore this, have downloaded it and it does it
Forum: Fixing WordPress
In reply to: After DNS change only 404 error appearsIt was a database issue, did some sql to sort it. URLs needed changing over. Also refreshed it with a previous version.
Forum: Plugins
In reply to: [Contact Form 7] Store submitted form data in database on domainGot it working with Flamingo
Forum: Plugins
In reply to: [Contact Form DB] Does this work with Qode's Bridge Theme?Ok thanks for the reply anyway
Forum: Themes and Templates
In reply to: Archive.php – Show only posts from user's selected categoryHave sorted that bit out, but have also discovered that if a a category has 2 pages of results (5 per page, so between 6 – 10 posts in category) then it doesn’t go back to the 2nd page, when you click the link it stays on page 1.
However with any higher number of pages it goes through them all ok.
Forum: Themes and Templates
In reply to: Archive.php – Show only posts from user's selected categoryHave got it working 99%. Correct posts and pagination works using the code pasted below. Goes inbetween the $wp_query bit and the while loop.
global $query_string; //this function solves the category error of showing all posts $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts($query_string.'&paged='.$paged.'&posts_per_page=5');
Only thing is when you click onto the last page of results, if it has less than 5 pages, they don’t show. So if a category has 17 posts, the last 2 posts won’t show on the final page. Instead it keeps you on the penultimate page of results.