revistausina
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Create custom author pageThanks lot. I will take your advice into consideration to make different user accounts. Meanwhile, I am going to try to implement your idea of passing the Author’s name as a URL query string. Thanks so much again
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Related posts on sidebarYes, I have. But regardless of the post I select, it always says “Please visit a single post view to reveal the customization options”
It’s really important for me to display it as a list, otherwise I won’t be able to use this feature anymore. I guess I will start looking for a way to change it by code. If anyone knows it, it will be very appreciated.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Related posts on sidebarHi! I understand there is an issue with the visual customizer selector. But where in JetPack plugin can I change the settings to list instead of grid? Can I add something to my functions.php that does that?
Thanks again
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Related posts on sidebarHey KokkieH
Yeah, I had figured it out, by changing from grid to list, but for some reason it changed back and now I cannot go to Customize and select grid. When I try to go to related posts tab at Customize, it says “Please visit a single post view to reveal the customization options”
Any idea why?
Thanks
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Related posts on sidebarBtw, do you know how I could make the related posts display one after the other?
I tried to use clear: both, and display: block, but for some reason it’s not working. All four elements are squeezed right next to each other. Instead, I would like them to appear one after the other, but despite many changes on the CSS it hasn’t worked it out ??
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Related posts on sidebarTHanks, it’s working now. I had some CSS that was hiding it by mistake.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Related posts on sidebarThanks for the answer. Now instead of “Array”, a black line appeared.
I’m using a post template that calls for this sidebar:
?> <div id="secondary-recomenda" class="widget-area-recomenda" role="complementary-right"> <?php do_action( 'before_sidebar' ); ?> <?php if ( ! dynamic_sidebar( 'recomenda' ) ) : ?> <?php if ( class_exists( 'Jetpack RelatedPosts' ) ) { echo do_shortcode( '[jetpack-related-posts]' ); } ?> <?php endif; // end sidebar widget area ?> </div><!-- #secondary .widget-area -->
- This reply was modified 5 years, 6 months ago by revistausina.
The problem is that all other functions inside functions.php work, including a couple from JetPack, for example’jetpackme_more_related_posts’ and ‘jeherve_custom_image’. Only this ‘jetpackme_no_related_posts’ doesn’t work…
Thanks Gemma, I will try to find someone to check my functions.php then. I wasn’t really trying to customize them further, but only to understand why they don’t work, since the code is right
Hey! I have also tried to add the is_single conditional snippet but it doesn’t work as well. Here is the code I used:
function jetpackme_no_related_posts( $options ) { if ( is_single( array( 8034, 7884, 7844, 7770, 8444, 10391, 7936, 8983, 10385, 8047, 8040, 9096, 9450, 9452, 10056, 9497, 10131, 10330 ) ) ) { $options['enabled'] = false; } return $options; } add_filter( 'jetpack_relatedposts_filter_options', 'jetpackme_no_related_posts' );
Does anyone know why?
Thanks
Hey, yes. That’s what I added to my functions.php, but it’s not working. I would like to have several posts tagged ‘n-relacionar’, which would be easier for me than looking for the post id and uptading to is_single conditional…
Thanks for the help
Forum: Fixing WordPress
In reply to: Image link not updatingAnyone??
Forum: Fixing WordPress
In reply to: Image link not updatingI’m noticing more of this bug in my website… Whenever I try to edit the size of an image inside a post, or the number of images in a gallery, for example, it takes several attempts until it updates.
Forum: Fixing WordPress
In reply to: Image link not updatingHi! Actually, the problem seems to be in the Media Library, not in the post editor. If I access any image in the Media Library (where you see URL and can edit the title, subtitle, description…) and try to add a “image link” to it, after refreshing it disappears…