Softound Solutions
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Custom validation of pincodeOk, good.
Forum: Plugins
In reply to: [Contact Form 7] Submit form without clicking submit?What is your main aim of doing this ?
Forum: Plugins
In reply to: [Contact Form 7] Custom validation of pincodeHi,
You can try the following code in you functions.php file, backup the file before make any modification, use FTP software to edit the file, don’t edit directly in wp-admin file editor
function validation_pincode_func( $result, $tag ) { $pincode = 123456; $tag = new WPCF7_Shortcode( $tag ); $name = $tag->name; $value = isset( $_POST[$name] ) ? trim( wp_unslash( strtr( (string) $_POST[$name], "\n", " " ) ) ) : ''; if ( ('text' == $tag->basetype) && ($name=='pincode') ) { if ( $tag->is_required() && '' == $value ) { $result->invalidate( $tag, wpcf7_get_message( 'invalid_required' ) ); } elseif ( $pincode !== $value) { $result->invalidate( $tag, wpcf7_get_message( 'invalid_pincode' ) ); } } return $result; } add_filter( 'wpcf7_validate_text', 'validation_pincode_func', 10, 2 ); add_filter( 'wpcf7_validate_text*', 'validation_pincode_func', 10, 2 ); function invalid_pincode_message($messages){ $messages['invalid_pincode']['description'] = 'Invalie Pincode'; $messages['invalid_pincode']['default'] = 'Invalie Pincode'; return $messages; } add_filter( 'wpcf7_messages', 'invalid_pincode_message' );Hi,
Use this CSS
.wpcf7-form .wpcf7-list-item{ margin-left: 0em; }Forum: Plugins
In reply to: [Contact Form 7] auto post form infoHi,
You mean to see preview of the submitted informations in another page ?
Forum: Plugins
In reply to: [Contact Form 7] CF7 Dropdown brokenHi,
I think it is related to some CSS issue, just try the following CSS,
.wpcf7-form select{ max-width:100%; }Forum: Themes and Templates
In reply to: [Theme:Ferro]Call to undefined functionHi,
Try to upload all the theme files once again, one of the files which contains the “add_theme_page()” function might have missed or broken when you upload.
Forum: Themes and Templates
In reply to: [Tracks] Hover in CSSHi Samuel,
Still do you need the h2 tag out side of anchor tag ?
Forum: Themes and Templates
In reply to: Featured Image In PostHi,
As you said, it is a premium theme, so i can’t download and check the files to make changes, you can contact theme support team.
For quick solution try to use the below CSS, this will just hide the featured images from home page blogs listing, will not prevent loading images.
body.home article .entry-featured{ display:none; }Forum: Themes and Templates
In reply to: [AccessPress Store] Remove Page TitleGood to hear, please mark this topic as resolved.
Forum: Themes and Templates
In reply to: [Sydney] Testimonial scroll / slider@nathanthomas
Sorry, there is no way to PM here.@laislopesdesign
Please activate the “Sydney” theme, then you will get recommended plugins installation page.Thanks
Forum: Themes and Templates
In reply to: [AccessPress Store] Remove Page TitleYou can try this CSS
body.home h2.post-title{ display:none; }Forum: Themes and Templates
In reply to: [Guardian] footer color changeUse this CSS
.footer1, .copyright_info{ background: #F00 }try to install the theme in fresh wordpress installation.
hi,
You have to enable “Check to activate social links area” and provide social links
here Customizer -> Social Options -> Activate social links area