zep101
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can I set up WordPress without being online yet?Hey Evan thanks for the great tutorial. I think I can do this!
Do you have the:
Migrate to Production Site
Coming Soon…to show me how to migrate this to my live hostgator?
Forum: Fixing WordPress
In reply to: Can I set up WordPress without being online yet?Oh thanks for the tutorial Evan I will check it out.
Forum: Fixing WordPress
In reply to: Can I set up WordPress without being online yet?Thanks, I have been on the XAMPP site and the duplicator site and watched their videos and I am afraid that this is way over my head. I will have to look for another way to do this. Thanks for the info.
Forum: Plugins
In reply to: [Social Media Feather] Facebook share not showing post imageThis was not working because the image was too small
Forum: Plugins
In reply to: [Social Media Feather] How do I clear the cache for this plugin?Hey! I guess it was because of the image size. I replaced it with a large image and now it’s working. This is solved
Forum: Plugins
In reply to: [Social Media Feather] How do I clear the cache for this plugin?Maybe you can check, this is the url I am trying
http://www.jozepfit4life.com/effective-and-easy-strategies-to-stick-to-your-diet/The image should be a bathroom scale
Forum: Plugins
In reply to: [Social Media Feather] How do I clear the cache for this plugin?Is this happening because my image size is too small?
Forum: Plugins
In reply to: [Social Media Feather] How do I clear the cache for this plugin?I used the debug tool and I get the error:
Error parsing input URL, no data was cached, or no data was scraped.And it still shows a cached image
I need some more clarification about the functions.php file in my child. I was told to use the following code:
<?php add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' ); function theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); }Whenever I add anything below this I get an error. For example I am trying to add a slider and it tells me to add this code to my functions file:
`<?php echo do_shortcode(‘[carousel-horizontal-posts-content-slider]’); ?>
When I do I get an error. I know very little about php but isn’t the functions file supposed to have a closing tag like ?>
Forum: Plugins
In reply to: [Social Media Feather] Facebook share not showing post imageHi and thanks for getting back with me. I disabled the All in One SEO plugin and I tested Facebook sharing on 4 blog posts. One is returning an image but it is not the image for the post it is a banner ad in my side widget.
The others are still returning the same blank profile image in the screen shot.
I am leaving the SEO plugin disabled for now in case you want to look at it again.
Hi Andrew, I fixed the code and got it working, it was the second to last curly bracket that needed to be removed.
I got it working (not erroring out) but it was funky. The purpose of it was to turn my posts into excerpts and it created a “read more” button but when clicking on it it would just reload the excerpt. Plus it would end the excerpt in the middle of a word.
So I deleted the code. I am surprised that 2014 theme does not come already with the option to do excerpts. I will keep looking for a solution. I know I can get a plugin that kinda does what I want but I would rather code it. Let me know if you have any recommendations and thanks for you help, you taught me some things.
My host iPage directed me to the error log but it says: Your CGI error log is currently empty.
I’ll have to mess with this more later I have to go somewhere now, thanks for your help!
Yes I ran the code through http://phpcodechecker.com/ and saw the extra bracket and removed it before trying it again.
Where would my site error logs be? at my host?
Still not working I tried without the bracket and then again with ?>
Still get the “INTERNAL SERVER ERROR” it strange too because if I hit the back button to go back to editor and take the code out that crashed it and save it still says “INTERNAL SERVER ERROR” the only way I fix it is to use filezilla and strip it out and save???
Hi Andrew and thanks here is what I was trying to do to make excerpts instead of full posts, I got this online here
Here is the code I was trying to use:
<?php add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' ); function theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); } add_filter( 'the_content', 'wpsites_limit_content_conditionally' ); function wpsites_limit_content_conditionally( $content ) { return substr($content, 0, 100) . '<a href="' . get_permalink() . '">Read More Link</a>'; } return $content; }