cedcommerce
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Grey box appeared over my header image?Hi,
Please Go to customize submenu in Appearance admin menu. Now go Slider->General and disable the slider. Your issue will be fixed.Forum: Fixing WordPress
In reply to: My site will not loadHello globalreach1,
No need to login to admin dashboard. From FTP you can do this.
ThanksForum: Fixing WordPress
In reply to: htacess problem with multiple WP installsHi appshine,
Did you create a new database for your subfolder site. If you have already created then the problem is related to siteurl and homeurl. In a simple way you can solve this by :
1. Login to phpmyadmin
2. Select your database and table name wp_options and update the option name “siteurl” & “home” to subfolder site url.
Hope this will solve your problem quickly.
ThanksForum: Fixing WordPress
In reply to: not getting a box outside texthello geetsingh,
You are using bloginfo(‘stylesheet_directory’) to access child theme URL to the directory of the child theme’s files and that’s fine if your images are in child theme directory(wp-content/themes/childtheme/theme/images/icon1.png).
But if your Images are in parent theme-directory then use bloginfo(‘template_directory’).
hope this will help you.
thanks.Forum: Fixing WordPress
In reply to: Retrieve and show data from database tableHello angelocoppi,
Install 2 plugins,
https://wordpress.org/plugins/database-browser/
https://wordpress.org/plugins/tablepress/
In “Database Browser” plugin,
Go to Tools -> Database browser and select table from list . Now download table contents in format like XML,HTML,CSV,SQL,JSON.
After download goto TablePress > All Tables > Import , upload file and select import format .
After download a shortcode will be displayed like ” [table id=2 /]” .
Now open page and paste this shortcode . After update, open page in browser it will display content of table .
Hope this will help you.
ThanksYes you can do this via using the add_action( ‘save_post’, ‘save_custom_post_entry’, 10, 3); and check that the post type is what you’re looking for or not using this code
function save_custom_post_entry( $post_id, $post, $update ){ $slug = 'your-custom-post-type'; // If this isn't a 'book' post, don't update it. if ( $slug != $post->post_type ) { return; }else{ // do your job here. } }Hope this will help you.
Thanks.
Forum: Fixing WordPress
In reply to: Images don't display on siteI am able to see the site. Alignment of site is distorted.
I found images in the post. Here are the screenshots, Please check:
http://awesomescreenshot.com/08160s2a34
http://awesomescreenshot.com/08160s2a34Looking forward to hear from your.
ThanksForum: Localhost Installs
In reply to: how to deploy a website on the net?Hello Aminxp,
you can easily deploy a website on the net if you have a full access to the running wordpress site on local server and a web hosting that support wordpress, you can do this via following those steps:-
1) export your local database, you can simply do this via using phpmyadmin.
2) create MySQL database on live site.
3) import wordpress database on live site.(don’t forgot to change the site url and home url in the wp_options table).
4) upload wordpress files to live site (you can do this via ftp or cpanel).
5) edit your wp-config.php file at the root of wordpress directory and enter the database credentials you created earlier.That’s all, now you can login to the wp-admin and setting >> general and click save to ensure that site url is corrected anywhere else, also you need to go to the setting >> permalink to make sure all the post links working fine.
Additional steps: if you face broken image/media issues you can fix this via using this query you can simply run this query via phpmyadmin “UPDATE wp_posts SET post_content = REPLACE(post_content, ‘localhost/test/’, ‘www.yoursite.com/’);”
Hope this will help you.
Thanks.Forum: Fixing WordPress
In reply to: Posts list at tag pageHello janbrokes
Yes it can be done through custom query,following thread could help you
https://wordpress.org/support/topic/category-query-on-the-tagphp
Hope it will help youForum: Fixing WordPress
In reply to: Images don't display on siteHi lukasz21,
May be somehow images are deleted from media that are used in the page.
Can I have the link of the page with no images please.
ThanksForum: Fixing WordPress
In reply to: Add metaboxes in post into custom post typeHello
you can add metabox to custom post type. please refer to this tutorial for more info http://wptheming.com/2010/08/custom-metabox-for-post-type/
ThanksForum: Fixing WordPress
In reply to: Search resultsHie MissSearle,
Yes you can easily customize the way of your search.
Right now you are just fetching the names of the items.Fetch products images and show them. No big deal. I hope you are using custom post to show items.Ask for any further help, if needed.
Forum: Fixing WordPress
In reply to: How To Add A Continue Reading ButtonHi smartandsimplistic,
Write following code in functions.php filefunction cedcommerce_excerpt_more( $more ) { $link = sprintf( '<a href="%1$s" class="more-link"><button>%2$s</button></a>', esc_url( get_permalink( get_the_ID() ) ), sprintf( __( 'Continue reading' )) ); return ' … ' . $link; } add_filter( 'excerpt_more', 'cedcommerce_excerpt_more' );It will add a continue reading button after excerpt
ThanksForum: Fixing WordPress
In reply to: How to exclude some content from posts to be used as "excerpt"Hi estevenin,
You add all these shortcode ([download]Here is the amazing download box[/download] , [Youtube=link] )from dashboard?
If you are adding all these shortcode from dashboard then its not good to exclude some content from <div class=”itemBody> wrapper.
I think you are adding download box from single.php file using “[download]Here is the amazing download box[/download]” shortcode not from dashboard. Share your single.php file code or your site url so that I can resolve your issue
ThanksForum: Fixing WordPress
In reply to: My site will not loadHello globalreach1,
Currently your site looking blank. Go to root directory where your wordpress setup like wp-content, wp-admin etc folder is present. Here you can see a file having name “wp-config.php” and on line number 71 you find:define(‘WP_DEBUG’, false);
and make it true as :
define(‘WP_DEBUG’, true);
then visit your site you can find the issue why site is blank
Thanks