Clarion Technologies
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Integration of WordPress pagesHi,
Which system? Can you please explain in detail what exactly are you planning to do?
Thanks
Forum: Fixing WordPress
In reply to: how do i get into adminForum: Fixing WordPress
In reply to: Site not showing anything after re-upload of filesHi,
Please turn error reporting on and you will be able to see the error.
Also had you changed the values in wp-config.php file?
https://codex.ww.wp.xz.cn/Editing_wp-config.php
Thanks
Forum: Fixing WordPress
In reply to: wordpress installHi,
There are 2 different websites.
http://www.ssn.edu.in and http://www.ssn.edu.in/apps/
http://www.ssn.edu.in is working properly and http://www.ssn.edu.in/apps/ needs to be setup by completing the installation process.
Please complete the installation for http://www.ssn.edu.in/apps/ website and your blog will be ready.
Also use different database for both the websites.
Thanks
Forum: Fixing WordPress
In reply to: Get Post Thumbnails from X category to display in flexsliderHello drigo20,
You have used below code which Returns an array (url, width, height, is_intermediate), or false, if no image is available.
echo wp_get_attachment_image_src( get_post_thumbnail_id($attachment->ID), 'full' );You need to use like this:
$image_attributes = wp_get_attachment_image_src( $attachment->ID ); if ( $image_attributes ) : ?> <img src="<?php echo $image_attributes[0]; ?>" width="<?php echo $image_attributes[1]; ?>" height="<?php echo $image_attributes[2]; ?>" /> <?php endif; ?>Thanks
Forum: Fixing WordPress
In reply to: Images Not Appearing On Home Page After Moving to New ServerHi,
You have to change the URL in database and not files.
Please see below link for more details.
https://codex.ww.wp.xz.cn/Moving_WordPress
Thanks
Forum: Fixing WordPress
In reply to: Show ads in specific categoryForum: Fixing WordPress
In reply to: Hide title messagesForum: Fixing WordPress
In reply to: Moving from dev folder to liveYes this is best tool for replace urls https://interconnectit.com/products/search-and-replace-for-wordpress-databases/
1) Just download from link
2) Extract zip file
3) Copy and paste worpdress root folder where wp-config.php file there and rename to “something”
4) Just go to browser http://example.com/somethingForum: Fixing WordPress
In reply to: Where do I change the forget password link in the email notificationHi,
Please have a look at below link.
https://ww.wp.xz.cn/support/topic/customizing-lost-password-email?replies=7
Thanks
Forum: Fixing WordPress
In reply to: Set featured image but keep loadingEnable debug in wp-config file and check what are issues is there
Open wp-config.php file from root folder and search for ‘WP_DEBUG’
set “false” to “true”define(‘WP_DEBUG’, true);
Forum: Fixing WordPress
In reply to: Moving from dev folder to liveHi,
You will have to find and replace all old links with new links in the database.
Thanks
Forum: Fixing WordPress
In reply to: Product Permalink BaseIf you are using woocommerece plugin , ask this question in
https://ww.wp.xz.cn/support/plugin/woocommerceForum: Themes and Templates
In reply to: Remove Category from Blog Template LoopHello Suresh Patel,
Please add the below parameter in the argument list of WP_Query:
category__not_in' => array(42)Thanks
Forum: Fixing WordPress
In reply to: WordPress dashboard is wierd!Hi,
Just checked and found that your database still contains old links
eg: http://localhost:8888/wp-content/uploads/2016/01/Untitled32-2.pngPlease find all old links and replace with new links in your database and then upload. All will work fine.
Thanks