miss-d
Forum Replies Created
-
Forum: Plugins
In reply to: [User Specific Content] Error in php error log…can someone test this code? It seems to work for me:
wp-content/plugins/user-specific-content/User-Specific-Content.php – Line 373
change:
if (!count($savedusers) > 0 && !count($savedroles) > 0 ){to:
if (!$savedusers > 0 && !$savedroles > 0 ){Forum: Plugins
In reply to: [User Specific Content] Error in php error logSame here….. after switch to PHP 7.2 I get this error…. WP version is 5.1
Please help, need this plugin and need a solution <:-)
Thanks!!Forum: Plugins
In reply to: [SpiderCatalog] Problems with WP Editor in PluginOf course you can’t do it for all ?? – I was just hoping that you might give me a hint where I maybe can do it myself in the code? (which file etc.)
Thanks!Forum: Plugins
In reply to: [SpiderCatalog] Problems with WP Editor in PluginHi, as for the editor, it was the cforms plugin that mixed things up! So this is working now.
As for the automatically added new line…. is there a way to disable this? In code? It starts with one line and the description on the left side and as soon as you add a value the second line is very confusing ti which field the descriptions belongs since the description “jumps” to the middle.
Thanks! ??
Forum: Plugins
In reply to: [YouTube WordPress Plugin by Embed Plus] TranslationHi, I’m also very interested in a translation – can do a German one ??
Forum: Plugins
In reply to: [cformsII] Help! After Upgrade to 4.7 my Cforms disapperedWith shortcode – just disappeared after the 4.7 upgrade. Tried Ninja Forms and it works just fine….
Forum: Plugins
In reply to: [cformsII] Allow more than 2 asterisk’s in fields….we realized this when we had a multiple lines field in a form and when entered more than 2 ** the form was submitted with all following fields empty – regardless if they were marked as required or not…..
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Wrong times for recurring events?!design126: Indeed it affects the purpose… I think apart from that its a great calendar plugin but this really really needs to get fixed. We have weekly recurring events and to edit them all one by one wouldn’t really be a solution. Does anyone of the developpers at least have an idea what it could be? This should get fixed asap. Pls help ??
! Thanks ?? Working fine now – have a nice weekend!
https://www.asta.uni-mannheim.de/asta/service/jobborse/ when you click on sort by date (Datum) – if you list 100 results we dont have the September dates on top but somewhere under August… Thanks!! =)
Hi Tobias,
hmm can you help me again? We’ve been experiencing the problem that it sorts only by day and not also by month, so we had dates 31.08.2012 sorted before i.e. 04.09.2012 … can you help me here again? =)
Thanks!
Perfect!! Working as it should, thanks a looooooot!!!
??
If you happen to do some future mods on backend sorting for date, pls let me know. For now this is exactly what we wanted.
Thanks a lot for this Tobias!
Can your code be modified so that the date column sorts “automatically”? Date ascending so that the newest entry is always on top? Regardless if its just entered under older entries in the backend?
That’d be cool ??
Thanks!Forum: Themes and Templates
In reply to: "The_Scenery" theme with changing background images?Thanks for the reply =) …yep, guess it would work with css classes but in the theme’s functions.php the “basic” background image is hardcoded:
$thescenery_settings['backgroundImage'] = get_bloginfo('template_url') . '/11670011000.jpg';
Hmm.. how to get round it…?
The other thing is that this theme has got resizeable background image, which is why I took this theme, and which I have to keep.
Forum: Fixing WordPress
In reply to: Help with conditional for future postskeesiemeijer you saved my day thanks a lot!!! ?? – it’s working now (at least in Firefox, IE is not giving out the future post msg): See here:
https://www.lebensberatung-ce.eu/adventskalender-2011
This is my code:
<?php while ( have_posts() ) : the_post(); ?> <?php if($post->post_status == 'future') : ?> <?php echo ' <p style="font-family: Arial; font-size: 14px;">Bitte noch ein wenig Geduld für dieses Türchen :)</p>' ?> <?php else : ?> <?php the_title(); ?> <?php the_content(); ?> <?php endif; ?> <?php endwhile; ?>
Thank you guys ??