Steelclover
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Missing Role in “All Posts View”thank you!
Forum: Fixing WordPress
In reply to: Missing Role in “All Posts View”You are totally right. In the User Screen there is the Option Role.
But i need id in the “all Posts View” as you can see by:/wp-admin/edit.php
Forum: Fixing WordPress
In reply to: Send BCC instead of TOI’ve tested it and it works awesome, even with my custom wp_mail queue.
Thank you @zex2911 and @bcworkz!
- This reply was modified 2 years, 2 months ago by Steelclover.
Forum: Fixing WordPress
In reply to: Send BCC instead of TOThanks a lot!
Where exactly do i have to write down the ?Bcc: ??
I messed around a few options but it wont fit.
I really appriciate your help.
Forum: Fixing WordPress
In reply to: Post still readable through url copy paste linkThanks but your answer has nothing to do with my question.
Forum: Fixing WordPress
In reply to: different roles for different restrictionsOut of curiosity, why set the “blue” query var to the current user’s ID?
first i thought that makes it unique so its not summed up with any other restrictions
- This reply was modified 2 years, 7 months ago by Steelclover.
Forum: Fixing WordPress
In reply to: different roles for different restrictionsThank you!
Forum: Plugins
In reply to: [Tickera - WordPress Event Ticketing] Ticket Template brokenSuperfast! Thank you! amazing service
Forum: Fixing WordPress
In reply to: easy modifier code doesnt workAs i can see by now it depends on if its a clean installed wordpress site or just updated.
however
the_category_ID( $echo );
still works on new clean version
the_category_ID( $echo );
still works on older version
the_category_ID( $echo );
stops workin on updated version
get_the_category($post->ID)[0]->name
works on new clean version
get_the_category($post->ID)[0]->name
does not work on updated versioni think there must be some issues within the progress of updating.
but thank you. now i know how to get it work.
- This reply was modified 3 years, 8 months ago by Steelclover. Reason: spelling
Forum: Fixing WordPress
In reply to: easy modifier code doesnt workoops i think something went wrong ??
Forum: Fixing WordPress
In reply to: easy modifier code doesnt workThank you again : )
the post-part wasnt broken. i tried all but its still not working.
Here is what ive got:
<div class ="category-<?php echo the_category_ID( $echo ); ?>"> do something </div>
the above prints over years:
<div class ="category-biersorten"> do something </div>
now it shows:
<div class ="category-"> do something </div>
ive tried:
<div class ="category-<?php echo get_the_category()[0]->name; ?>" do something </div>
and it shows:
<div class ="category-"> do something </div>
It works until i did the update. I have another sites running that old code and it still works. But all updated Sites are now broken.
May you can have a look at it.
forget about the id=”post” – this still works.- This reply was modified 3 years, 8 months ago by Steelclover.
Forum: Fixing WordPress
In reply to: easy modifier code doesnt workThank you.
That gives me
Array
as result.Forum: Fixing WordPress
In reply to: Viagra Comment while no comments setso does your answer mean that it is expected behavior to comment to a post while it is disabled? To me it sounds like a bug in the system.
But anyway thanks for your Support. I’ll use that plugin.
$title = get_the_title(); $short_title = wp_trim_words( $title, 7, '' ); tablepress_print_table( array( 'id' => '1', 'filter' => $short_title, ) );
thanks for your answer. You are right. it makes more sense to use it with php. i modified it a bit.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Date sorting stopped workingThe Error was a code inside the imported table
it works.