avipr
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Customer Reviews] stars won't show up on google searchsHello
Yes I have submitted the sitemap and its ranking on 2 and 3 for many keywords.
Can you please tell me what are the options you have used in your wp customer review settings.thanks
Forum: Plugins
In reply to: [WP Customer Reviews] stars won't show up on google searchsI searched for “The Gadget Hut ATM Bank” and I found that you have used customer reviews plugin(https://www.ads-software.com/extend/plugins/wp-customer-reviews/) on your site there https://www.thegadgethut.co.uk/pink-kids-toy-atm-savings-bank
Forum: Plugins
In reply to: [WP Customer Reviews] stars won't show up on google searchsHello
I also want to know about the same, I have many posts with review, but they are not showing with stars or reviews.
Can you please tell me how much time it takes ?thanks
Hello
I also want to know about the same, I have many posts with review, but they are not showing with stars or reviews.
thanks
Forum: Fixing WordPress
In reply to: Exclude posts from certain categories in latest postsHello
The solution will be like this
<?php query_posts( ‘cat=-1,-2,-3&posts_per_page=5’ ); ?>
by using – you can negate the specific category.
Hope it will help you.
thank you
Forum: Plugins
In reply to: [Contact Form 7] how stretch boxHello Mattia
Always Welcome
Forum: Plugins
In reply to: [Contact Form 7] how stretch boxOk, than change this
.wpcf7-textarea { width:200px !important; }
you can increase or decrease the width of .wpcf7-textarea because its used for text area in contact form 7
Forum: Plugins
In reply to: [Contact Form 7] how stretch boxHi
Simple reduce the width. use 180 instead of 200Forum: Plugins
In reply to: [Contact Form 7] Error to send emailcan you please explain which type of error you are getting.
Forum: Plugins
In reply to: [Contact Form 7] Form Field Width ChangesHi
Its here
First Solution
while creating contact form the default is something like this
<p>email
[email your-email] </p>
<p>subject
[text your-subject] </p>Now add text box size to it like this [email your-email 24/] </p>
Note 24/ is size, you can change it according to need, it will set the width of text box.Now move to text area
[textarea your-message 19×3]
Note- 19×3 means
19 columns and 3 rows
rows will set the height of text box and columns will set the width of text box.Second Solution
By using css,
open your default theme’s css file which is style.css
and append these line any where.wpcf7-text { width:200px !important; } .wpcf7-textarea { width:200px !important; }
the first one will set the width of text box and second one of textarea, now please adjust the width according to need.
!important; means any other style will be ignored or overwrite.
Hope it will help you.Forum: Plugins
In reply to: [Contact Form 7] how stretch boxYou are Welcome
Forum: Plugins
In reply to: [Contact Form 7] [Contact form 7] prevent editing textareaHi
Just add this line to your themes default css file which will be style.css
.wpcf7-textarea { resize: none; !important; }
Hope it will help you.
Forum: Plugins
In reply to: [Contact Form 7] Cant set proper email reportsHello
In mail change your email Message body to something like this
From: [your-name] <[your-email]>
Subject: [your-subject]
Name- [your-name]
Email- [your-email]
Skype ID- [text-714]
Web Site- [text-429]Hope it will help you
Forum: Plugins
In reply to: [Contact Form 7] [Contact form 7] prevent editing textareahi
I am not getting what you need, can you please explain more.
Forum: Plugins
In reply to: [Contact Form 7] how stretch boxHi
Its here
First Solution
while creating contact form the default is something like this
<p>email
[email your-email] </p>
<p>subject
[text your-subject] </p>Now add text box size to it like this [email your-email 24/] </p>
Note 24/ is size, you can change it according to need, it will set the width of text box.Now move to text area
[textarea your-message 19×3]
Note- 19×3 means
19 columns and 3 rows
rows will set the height of text box and columns will set the width of text box.Second Solution
By using css,
open your default theme’s css file which is style.css
and append these line any where.wpcf7-text { width:200px !important; } .wpcf7-textarea { width:200px !important; }
the first one will set the width of text box and second one of textarea, now please adjust the width according to need.
!important; means any other style will be ignored or overwrite.Hope it will help you.