distinctly
Forum Replies Created
-
Thanks so much! This was the solution – thank you.
Hi Tobias,
Thanks for your support! I have sent an email to the address.
Apologies, I only used some example data and not the real data I am actualy using. I have sent the JSON and the actual shortocdes I am using. Thank you!
Hi Tobias,
Thank you very much for the reply. Hmm… it still seems the CSS code is added but the table fields are still minimised.
It’s quite confusing to me because I have multiple separate sites across different hots with Tablepress and the plugin, and I am using multiple different browsers (both desktop and mobile) and all of them have stopped showing the larger edit input fields.
Forum: Plugins
In reply to: [Custom Content by Country (by Shield Security)] Custom Content by IP AddressHi Paul,
Thanks again for your help and support. One more feature request if I may, is it possible to add support for IP ranges?
eg. 127.*.*.*
would hit everything in that range, including 127.0.0.1
Thank you so much!
Forum: Plugins
In reply to: [Custom Content by Country (by Shield Security)] Custom Content by IP AddressYou are incredible – thank you, I will check it out now!
And, I have used Shield Security in my sites before and will highly recommend it to others, thanks!
- This reply was modified 2 years, 5 months ago by distinctly.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Tablepress Caching and WP RocketDone, thank you!
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Tablepress Caching and WP RocketHi Tobias,
Thank you so much – that code worked perfectly. Appreciate your assistance.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Tablepress Caching and WP RocketHi Tobias,
Many thanks for your response!
WP Rocket seems to have a way programmatically to clear the cache – https://docs.wp-rocket.me/article/494-how-to-clear-cache-via-cron-job
I was wondering whether I could edit the Tablepress code myself manually to call the function listed on that page? If so, would it be possible to direct me to the correct location?
The code is listed here:
<?php // Load WordPress. require( 'wp-load.php' ); // Clear cache. if ( function_exists( 'rocket_clean_domain' ) ) { rocket_clean_domain(); } // Clear minified CSS and JavaScript files. if ( function_exists( 'rocket_clean_minify' ) ) { rocket_clean_minify(); }
Thank you again and understand if it is too much to ask!
.
Scratch that, I’ve managed to figure it out by adding the ajax-load-more css style sheet into my theme!
Still trying to figure out how to link get the thumbnail to link to the post…
My current code is
<li class="alm-item<?php if (!has_post_thumbnail()) { ?> no-img<?php } ?>"> <?php if ( has_post_thumbnail() ) { the_post_thumbnail('thumbnail'); }?> <p class="title"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></p> <span class="date"><?php the_time("F d, Y"); ?></span> </li>
I’ve been experimenting with moving the <a href to the alm-item class part but without any luck
- This reply was modified 3 years, 3 months ago by distinctly.