Marco
Forum Replies Created
-
Forum: Plugins
In reply to: [Email Users] Email Users with WP Better EmailsThank you so much Max Ziebell.
Although I got the newest version of Email Users I used the dirty trick of Max.
I already got my template with wp better emails and all I wanted was Email users to insert the plain text into the template.
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] AJAX is not working .. once againI found the problem. It was indeed a theme problem.
I disabled 2 lines in the themes function.php:
//wp_enqueue_script( 'ddsmoothmenu', get_stylesheet_directory_uri()."/js/ddsmoothmenu.js", array('jquery')); //wp_enqueue_script( 'ddsmoothmenuinit', get_stylesheet_directory_uri()."/js/ddsmoothmenu-init.js", array('jquery'));
Now AJAX is working and the form is sending mails like it should.
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] codeI think this should help:
https://contactform7.com/faq/#Can_I_place_a_contact_form_outside_a_post
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] AJAX is not working .. once againDid a code validation on https://validator.w3.org
Code is valid, but AJAX still not working.
Forum: Plugins
In reply to: Facebook like comments in WordPressThis would be more a theme question I’d guess. I just asked something simmilar in another topic: https://www.ads-software.com/support/topic/add-facebook-like-or-google1-to-each-comment?replies=1
I would just like to have a Like-Button for each posted comment. The style of the comments is fully theme based
Just delete the text for “no related posts” in the admin menu
Same problem for me
Thanks to Kawuso ??
Problem was: Had forgotten to change the version tag in the php file…
Once again everything I have done:
- SVN Update
- Put the new files into trunk (new and override; new readme file with new stable release)
- Check for modifications
- SVN Commit
- “Branch/tag” trunk to /tags/stable-release
- SVN Update (to get the new tag to my local repo)
- done
It is version 0.2.2 now but it still displays version 0.1
Yeah. several times. I updated the screenshots afterwards
push
please help me. Still don’t know how to fix this.
The docs aren’t enought. I dont have an console svn…
- Check if your database is UTF8
- encode ?ü? into entities
those are the suggestions i can give you
Forum: Fixing WordPress
In reply to: Write new post directly into databaseThanks. I did it with https://blog.mbischof.de/einen-wordpress-post-per-xml-rpc-erzeugen and https://framework.zend.com/
Forum: Themes and Templates
In reply to: own permalink (PDF Permalink)SOLUTION:
<?php $p_id = get_the_id(); $query = mysql_query("SELECT * FROM fv_posts"); while($result = mysql_fetch_array($query)){ $array_id = $result['ID']; if ($array_id == $p_id){ echo $result['post_name']; } } ?>
Forum: Themes and Templates
In reply to: own permalink (PDF Permalink)Well the Idea is good. But I dont get the right permalink in this case. I get
https://www.fvfinanz.de/?p=2043
but I need the post_nameRight now I try to write my own sql query to get the post_name out of wp_posts