Zsolt Revay Giran
Forum Replies Created
-
I cleaned up myself, thanks.
No one asked for it yet you still delivered. You, a HOSTING company, want to make a buck out of AI by selling tokens and with this you thought … lets violate people’s trust by push down on their throat your AI slopmachine, maybe it sticks :-/
You care about selling tokens and making money, the clients are … details.Do you have any idea on the matter?
https://o9solutions.com/category/best-practices/feed/gn/
This is the custom setting for the exclusion and the registered meta field
https://share.zight.com/p9uo57xR
The same meta field is registered for multiple post types to achieve the same function, flag what not to show up in custom archive pages.
- This reply was modified 1 year, 9 months ago by Zsolt Revay Giran.
- This reply was modified 1 year, 9 months ago by Zsolt Revay Giran.
Forum: Plugins
In reply to: [Contact Form 7] contact form 7 fails to workI have the same problem. The weird thing is the form doesn’t get submited and throws a “please try again …” error with orange border only in GOOGLE CHROME and IE 8 (didn’t tried other IE versions). In Mozilla works fine. I started testing with older versions down the line until I reached version 4.1.2 which works fine in all browsers. Something happend at version 4.2 and up.
I deactivated all plugins and used the good old twenty-twelve theme just to be sure I limit the posibility of failure due to faulty code from other plugins I use along.
The thing is, I found this plugin in a project done by someone else so I will try and refactor all the code and build with piklist. I guess we can call it a resolved topic 🙂
Thanks for your help.
Hi Steve, I understand the nature of the problem and I agree that this is not Piklist’s fault, it is an awesome plugin by the way. I mentioned this issue to the Taxonomy Metadata Plugin author. The problem with that plugin is there are no updates since 2013-11-10, it’s not maintained and I thought I shared the issue here so others facing this problem could find a proper answer for this “bug” and I guess is good for you to too knowing what is causing problems (even if it is not your fault).
Thank you for your response and keep up the good job on Piklist.
Hi Edward, any thoughts on this problem?!
You are talking about the “Screen options” tab (top far right corner). Yes I searched there and the Discussion doesn’t appear at all :-(, this behaviour feels like there is a special filter function somewhere in the code to hide the “discussion option” from the wpsc-product post type.
Forum: Fixing WordPress
In reply to: Disable text editor in admin when specific template selected?Disable the content editor for a specific page template
Forum: Fixing WordPress
In reply to: Your email address will not be published. – editing textI just crossed this problem myself and I found the solution!
I looked at the reference here:http://codex.wordpress.org/Function_Reference/comment_formFor example:
title_reply
(string) (optional) The title of comment form (when not replying to a comment, see comment_form_title).
Default: __( ‘Leave a Reply’ )It means we insert the title_reply in the array like this:
comment_form(array('title_reply'=>'Add Comment'));(notice that default is Leave a Reply, now it will be changed to “Add Comment”)For the fields (Name/Email/Url) I copy pasted the following code just before calling the comment_form():
$fields = array( 'author' => '<p class="comment-form-author">' . '<label for="author">' . __( 'Name' ) . '</label> ' . ( $req ? '<span class="required">*</span>' : '' ) . '<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . ' /></p>', 'email' => '<p class="comment-form-email"><label for="email">' . __( 'Email' ) . '</label> ' . ( $req ? '<span class="required">*</span>' : '' ) . '<input id="email" name="email" type="text" value="' . esc_attr( $commenter['comment_author_email'] ) . '" size="30"' . $aria_req . ' /></p>', 'url' => '<p class="comment-form-url"><label for="url">' . __( 'Website' ) . '</label>' . '<input id="url" name="url" type="text" value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" /></p>', );then I started to change the HTML markup in $fields = array (….
ex. <p class=”comment-form-author”> changed to <div class=”comment-form-author”>
and then added to the the comment_form(array.. like this:
comment_form(array('title_reply'=>'Add Comment', 'fields' => $fields));and that’s it