dineshkashera
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Homepage URL doesn’t display https:// (or https://)Your warm welcome ??
Forum: Fixing WordPress
In reply to: Homepage URL doesn’t display https:// (or https://)Hello,
To force change the url from http to https, please backup your .htaccess file from wordpress root. and create the new .htaccess file at the root and paste the below code in .htaccess file.<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{ENV:HTTPS} !=on RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R,L] # BEGIN WordPress RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>
To get more help please visit this link : https://designmodo.com/wordpress-https/
Thanks
Hello,
I have checked you site and found that container class div have 1080px width also on mobile version..container { width: 1080px; margin: 0 auto; }
Use media query for mobile version and paste the below code at bottom of file name
wp-content/themes/redwood/style.css@media only screen and (min-width:280px) and (max-width : 767px){ .container { width: 100%; margin: 0 auto; } }
I think you have also delete some responsive.css file, because i can’t find any media query on your site.
Thanks
- This reply was modified 7 years, 4 months ago by dineshkashera.
- This reply was modified 7 years, 4 months ago by dineshkashera.
Forum: Fixing WordPress
In reply to: Related posts showing too much excerptHello,
You can limit the excerpt length on post by below code.Please Paste the below code in your current theme’s functions.php file.
function custom_excerpt_length( $length ) { global $post; $post_id = $post->ID; if ( get_post_type( $post_id ) == 'post') { return 20; } return 30; } add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
Thanks
- This reply was modified 7 years, 4 months ago by dineshkashera.
Forum: Fixing WordPress
In reply to: multiple radio buttonsHello,
You can add your radio button using the below code :
[radio silicon-shoes label_first default:2 “good” “ok” “bad” “improved”]
For more details please visit this link
https://contactform7.com/checkboxes-radio-buttons-and-menus/Thanks
Forum: Fixing WordPress
In reply to: possible Bug in Tag CreationHello,
Its not working because %ea used for URL Encode and it violets the url encoding rule. It is also ASCII value %ea. If i will use %ba then it also not create because it is also reserve for url encode. Please see this link https://www.tutorialspoint.com/html/html_url_encoding.htmAnd also read below on second last paragraph.
I hope it will help you to understand why this character not allow.
Thanks
- This reply was modified 7 years, 5 months ago by dineshkashera.
Forum: Fixing WordPress
In reply to: possible Bug in Tag CreationHi,
I have also checked with Woocommerce product attributes but its still working fine. Please see this link https://drive.google.com/file/d/0B5J0iw3QkoFVSXRXSHFudGV3RlE/view?usp=drivesdkAnd also create Product tag, see this link https://drive.google.com/file/d/0B5J0iw3QkoFVWTBCMHNUWnBaX28/view?usp=drivesdk.
Please check by uninstall plugins one by one, may be its due to some plugins. There is no any bug with woocommerce because its working fine on my localhost.
Thanks
Forum: Fixing WordPress
In reply to: how to make a circle of a square pictureHello,
Please use the below css to make the bottom square picture in circle..sow-image-container a img {
border-radius: 35%;
}Thanks
Forum: Fixing WordPress
In reply to: possible Bug in Tag CreationHello gdelfine,
I have just tested a tag’s name contains the string “% ea” or “test % ea” then its working fine. Special symbols are not allow in slug but you can give in name. I think is there some jquery error. Please check console log in browser.
Thanks
Forum: Fixing WordPress
In reply to: Dashboard browser nag is wrongHello PressGang,
Please see the below link, I hope it will help you https://developers.google.com/web/updates/2016/10/avoid-not-secure-warnThanks