Forum Replies Created
-
AuthorPosts
-
EduardoParticipant
Hello Sakin, I reseted all settings. It works again. Thank you.
EduardoParticipantThank you
EduardoParticipantHello Sakin,
I can’t find out any solution.
Can anybody help me with this issue?
Thank you!EduardoParticipantHello Sakin,
How is everything going?
I am waiting for an answer about removing e-mail field or introducing the text “este campo es opcional”. Codes in functions.php does not work.And, what about to make narrow the both margins (on the right and left)?
Thank you.EduardoParticipantThank you for “website Field” I did not able to watch it
About email field, it does not work, any idea?EduardoParticipantHello Sakin,
How is everything going? Is possible to do those changes?
Thank youEduardoParticipantHello Sakin,
finally I restarted my blog, but I still want to change the comment form fields. I pasted that in functions.php in the child theme (you can see below).
But now, first I want to put close to the email field, the following text: “This field is optional”, in spanish “Este campo es opcional”.Second, I would like to remove “the web field”.
Third, I need to make narrow the both margins (on the right and left).
Thank you!
<?php
/**
* Catch Box Pro Child Theme functions and definitions
*
*/
if ( ! function_exists( ‘catchbox_comment_form_fields’ ) ) :
/**
* Altering Comment Form Fields
* @uses comment_form_default_fields filter
*/
function catchbox_comment_form_fields( $fields ) {
// get data value from theme options
$options = get_option( ‘catchbox_options’ );
$disableurl = $options[ ‘commenting_disable_url’ ];$req = get_option( ‘require_name_email’ );
$aria_req = ( $req ? ” aria-required=’true'” : ” );
$commenter = wp_get_current_commenter();$fields[‘author’] = ‘<p class=”comment-form-author”><label for=”author”>’ . esc_attr__( ‘Name’, ‘catchbox’ ) . ‘</label> ‘ . ( $req ? ‘<span class=”required”>*</span>’ : ” ) . ‘<input id=”author” name=”author” type=”text” value=”‘ . sprintf( esc_attr__( ‘%s’, ‘catchbox’ ), $commenter[‘comment_author’] ) . ‘” size=”30″‘ . $aria_req . ‘ /></p>’;
$fields[’email’] = ‘<p class=”comment-form-email”><label for=”email”>’ . esc_attr__( ‘Email’, ‘catchbox’ ) . ‘</label> ‘ . ( $req ? ‘<span class=”required”>*</span>’ : ” ) . ‘<input id=”email” name=”email” type=”text” value=”‘ . sprintf( esc_attr__( ‘%s’, ‘catchbox’ ), $commenter[‘comment_author_email’] ) . ‘” size=”30″‘ . $aria_req . ‘ /></p>’;if ( isset( $fields[‘url’] ) && $disableurl == ‘1’ ) {
unset( $fields[‘url’] );
}return $fields;
}
endif; //catchbox_comment_form_fieldsadd_filter( ‘comment_form_default_fields’, ‘catchbox_comment_form_fields’ );
EduardoParticipantOh oh,
I did something wrong:
PHP Parse error: syntax error, unexpected ‘}’ in /usr/home/mayorderin.com/web/wp-content/themes/catch-box-pro-child/functions.php on line 27My web does not work.
Please help me!
Thank youEduardoParticipantThank you
EduardoParticipantOne more:
3. Post a comment window, I just want to see: Name and comment, because I do not want the people have to register for post a comment.
Thank you again!
EduardoParticipantHello Sakin,
I have a few questions.
1. Now, I put the social media widget on the primary sidebar (I just have the post column on the left and sidebar column on the right), I put the icons in the center, but I would like to put the title of these icons also to the center.
2. I would like to narrow the frame on the left of post column, and on the right of sidebar column.
Thank you!
EduardoParticipantPerfect!,
thank you very much, but I have more questions.
I want to remove this (just at the end when you read a post, no on post list homepage):This entry was posted in – and tagged – by -. Bookmark the permalink.
EduardoParticipantPerfect! Thank you!
EduardoParticipantSakin, I still have the blog in a private space (something like “test”). So If you want to watch it, I am able to send you an e-mail, or private post with login and password.
Thank you.Nevertheless, you can watch the problem with social icons in this link:
https://drive.google.com/file/d/0BzK84rT02Y4_VGV3UEN6aW91ZnM/view?usp=sharingEduardoParticipantOk. Thank you Sakin
But, Can I increase padding between social icons (header sidebar right) and header?
Nowadays social icons is touching the header image.EduardoParticipantSo sorry,
I forgot to write that I have Catch box pro theme.
Thank you. -
AuthorPosts