thefastestmedia
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to add image alt tag for product thumbnail?can you try following code above image
<?php echo $thumb_id = get_post_thumbnail_id($post->ID); ?>
and let know if you get the Id or not.
Forum: Fixing WordPress
In reply to: How to add image alt tag for product thumbnail?Hey try once
<img src="<?php echo get_post_meta($post->ID, 'thumbnail', true) ?>" alt="123"/>
and let know if 123 came as alt or not
Forum: Fixing WordPress
In reply to: need to add redirect rule via function.phpHi Davood Dehnavi,
I have added following code at the htaccess`# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteRule ^(.*)’(.*)$ /$1$2 [R=301,L]
RewriteRule ^(.*)'(.*)$ /$1$2 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress`
its working for redirect , but it is not allowed image to upload from admin.
Forum: Fixing WordPress
In reply to: How to add image alt tag for product thumbnail?Hey,
Do you have product-list.php / archive-product.php in your theme folder?
Forum: Fixing WordPress
In reply to: New Posts no longer contentCan you give the link of your blog?
Forum: Fixing WordPress
In reply to: New Database for existing WordPress sitemeans the theme changes what you done in the file will be as it is but you lost all changes saved at the database.
Forum: Fixing WordPress
In reply to: How to add image alt tag for product thumbnail?in above code add the alt attribute to the image
<?php $thumb_id = get_post_thumbnail_id($post->ID); ?> <div class="Product-list col-md-3 col-xs-12 nopadding"> "><img src="<?php echo get_post_meta($post->ID, 'thumbnail', true) ?>" alt="<?php echo get_post_meta($thumb_id , '_wp_attachment_image_alt', true); ?> "/>
Forum: Fixing WordPress
In reply to: New Database for existing WordPress siteNew database for the existing site will give you the fresh installed wordpress with the template changes what you set before.
If that is ok with you then you can go for that.
just create a new database and set all the details of new database at the wp-config.phpForum: Fixing WordPress
In reply to: How to add image alt tag for product thumbnail?ok. Do you have image name?
Go to wp-admin/media and find image by image name.
click edit.
add the image alt there and save image.Forum: Fixing WordPress
In reply to: New Database for existing WordPress siteSo What you exactly want? a new database for your existing site? or to remove some data from your database?
Forum: Fixing WordPress
In reply to: Is my site hacked?Have some patients. check your robot.txt file.
next time the google robot visits your site they will make your site visible.Forum: Fixing WordPress
In reply to: 404 error messageHi,
Contact us is working for me.
link your Bracelets menu with any product category.
Link not appeared for me.Forum: Fixing WordPress
In reply to: Logo is covering menu when minimised…try to add following code in style.css
@media screen and (min-width: 800px) and (max-width: 1025px) { .nav.main-nav.clearfix { width: 80%; } }
May be this will solve your issue
Forum: Fixing WordPress
In reply to: Add comment box in wordpress.Hi ,
Go to wp-admin -> Settings -> Discussion Settings enable Allow people to post comments on new articles option there.
I really do not have idea if this works for you or not.
try once.
Forum: Fixing WordPress
In reply to: WooCommerce variations order on dropdownSort the ATTRIBUTES in Products > Attributes. They cana be dragged and dropped in your desired order.