Ravikumar Patel
Forum Replies Created
-
Find this function on your plugin folder and replace this one.
we have already fix for plugin.get_currentuserinfo(); replace wp_get_current_user();Forum: Fixing WordPress
In reply to: Upgraded to WP 4.5 and now my site is broken@mindaugasvai and @shashwatsingh,
All ready Forum moderator define you create your own threads to discuss your own issues.Forum: Fixing WordPress
In reply to: err_too_many_redirects .htaccesstry this one for redirect:
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^contacto-empresa-drones-barcelona.html(/.*)?$ http://aerialproductions.es/$1 [R=301,L] RewriteRule ^nuestra-empresa-profesional-con-drones.html(/.*)?$ http://aerialproductions.es/$1 [R=301,L] RewriteRule ^contacto.html(/.*)?$ http://aerialproductions.es/$1 [R=301,L] RewriteRule ^fotos-aereas-con-drones.html(/.*)?$ http://aerialproductions.es/$1 [R=301,L] RewriteRule ^seguridad.html(/.*)?$ http://aerialproductions.es/$1 [R=301,L] RewriteRule ^nuestra-empresa.html(/.*)?$ http://aerialproductions.es/$1 [R=301,L] RewriteRule ^videos-aereos.html(/.*)?$ http://aerialproductions.es/$1 [R=301,L] RewriteRule ^index.html(/.*)?$ http://aerialproductions.es/$1 [R=301,L] RewriteRule ^fotos-aereas.html(/.*)?$ http://aerialproductions.es/$1 [R=301,L] RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>Forum: Fixing WordPress
In reply to: TwentyEleven Child – Lost Background Image/ColorPlease close this question this one duplicate of this one.
https://wordpress.org/support/topic/twentyeleven-child-lost-background-imagecolor?replies=1Forum: Fixing WordPress
In reply to: WordPress site not loading any resourcesCheck on wp_options siteurl and homeurl table.
Forum: Fixing WordPress
In reply to: site do not show photoOn your theme this one issue related to js.
Now all image opacity display 0 so fix now using css.img { opacity: 1 !important; }Forum: Fixing WordPress
In reply to: Changing the site title to a logoFirst remove header image and manage css
#site-title, #site-description { position: relative !important; }Forum: Fixing WordPress
In reply to: Weird "OOO" appearing everywhere on my WordPress siteFind in code and add hear this code. first check on header.php
Forum: Fixing WordPress
In reply to: page isn't workig, unable to handle requestThis one is your theme or plugin issue.
popuplinks() function deprecated form version 4.5.find make condition on this function.
if ( version_compare( $GLOBALS['wp_version'], '4.5', '<' ) ) { // your popuplinks() function code }Forum: Fixing WordPress
In reply to: Help with WP Query argsDiscribe more info and use this short code.
on $term single value arrived? if more then one pass with comma in array.
'terms' => array('zyf','dasd');<?php function news_archive_loop() { global $post; $term = get_query_var(term); $args = array( 'post_type' => 'news-article', 'posts_per_page' => 12, 'post_status' => 'publish', 'paged' => get_query_var( 'paged' ), if (isset($term)){ 'tax_query' => array( array( 'taxonomy' => 'news-states', 'field' => 'name', 'terms' => $term ), ); } ); }Forum: Fixing WordPress
In reply to: Bloglovin' photos are blurry even after updating pxAdd function in function.php or review code and change current theme code for feed.
if (function_exists('add_theme_support')){ add_theme_support( 'post-thumbnails' ); add_image_size( 'feed-thumb-img', 270, 200, TRUE); } // display featured post thumbnails in WordPress feeds function wcs_post_thumbnails_in_feeds( $content ) { global $post; if( has_post_thumbnail( $post->ID ) ) { $content = '<p>' . get_the_post_thumbnail($post->ID,'feed-thumb-img') . '</p>' . $content; } return $content; } add_filter( 'the_excerpt_rss', 'wcs_post_thumbnails_in_feeds' ); add_filter( 'the_content_feed', 'wcs_post_thumbnails_in_feeds' );Forum: Fixing WordPress
In reply to: Bloglovin' photos are blurry even after updating px@jayqualin,
Are u wants Feed image display in large size?Thanks,
RavipatelForum: Fixing WordPress
In reply to: text is invisible on all pagesI have seen now this one theme or plugin related issue which is pass class on <html> section “js_active”.
but temporary u can fix using css.
http://aptitudeeditorial.com/wp-content/themes/enfold/css/shortcodes.css
line 167 change opacity: 1;
.js_active .av-minimum-height .container { opacity: 0; // change 1 transition: opacity 0.6s ease-in 0s; z-index: 1; }Find this function on your plugin folder and replace this one.
we have already fix for plugin.
https://wordpress.org/support/topic/possible-plugin-conflict-5?replies=13get_currentuserinfo(); replace wp_get_current_user();Forum: Fixing WordPress
In reply to: 4.5 update errorFind this function on your plugin folder and replace this one.
we have already fix for plugin.
https://wordpress.org/support/topic/possible-plugin-conflict-5?replies=13get_currentuserinfo(); replace wp_get_current_user();