dlsn
Forum Replies Created
-
Forum: Plugins
In reply to: [Autoptimize] Deactivation destroys my webpageAfter I put the @-import of the css file at the top of the main css file, it worked.
Forum: Developing with WordPress
In reply to: Query only sticky posts (without “normal” posts)Thank you very much @bcworkz ! It works! Great!
For others who are interesed, this is my working snippet for this function.
if(count(get_option('sticky_posts'))>1){ $args = array( 'posts_per_page' => 2, 'post__in' => get_option( 'sticky_posts' ), 'ignore_sticky_posts' => 1 ); $sticky_posts = get_posts( $args ); }elseif(count(get_option('sticky_posts'))>0){ $args = array( 'posts_per_page' => 1, 'post__in' => get_option( 'sticky_posts' ), 'ignore_sticky_posts' => 1 ); $sticky_posts = get_posts( $args ); }
Forum: Developing with WordPress
In reply to: Breakpoint (for main menu)Ok. Thank you!
Forum: Fixing WordPress
In reply to: Plugin – Edit file in the backend throughOk, thanks then I try it via the database
I’ve just seen that it is a PRO-feature…
Forum: Fixing WordPress
In reply to: Redirects from a single page@bcworkz Yes, it works.
Forum: Fixing WordPress
In reply to: Redirects from a single page@bcworkz thank you for your help.
I just found a possibility to solve my problem:
RewriteCond %{REQUEST_URI} ^/t/?$ RewriteRule (.*) /neuesVerzeichnis [R=301,L]
Thank you. I’ll look for a feature request.
Hello @deathlynotes,
thank you for your help.But actually this pages don’t really help me in solving my problem, unfortunately.
First, I want that the user’s IP-address isn’t shown in the mail-text.
And I want the user to give his message a custom subject which is used as the real subject of the sent mail. (In the settings of the block, I can give a standardized subject but not an unique subject convenient to a single message)(With the word “user”, I mean the person sending the message)
I hope my wish is comprehendible…
Is it possible to edit it like this?
Thank you!
DanielBzw. wie kann man generell das Skript für die Mailbenachrichtigung bearbeiten?
************* English **************
Or how can I generally edit the mail-script of the contact form?