Jami Gibbs
Forum Replies Created
-
WooCommerce took all of the Jigoshop code and they’re developers on top of it. That’s why they’re “similar”.
But now they’re working in different directions and Jigoshop is hands down the better option. I use Jigoshop exclusively.
Forum: Plugins
In reply to: [Theme Check] [Plugin: Theme-Check] Warning: file_get_contentsI’m also getting the error message that bradthomas127 said too.
I’m wondering if he was ever able to figure out what’s happening there. It’s pointing to my theme’s options panel but the first time I used this plugin a month ago, it didn’t show that warning. I have not changed anything inside the admin folder (although I have updated the theme check plugin) and now it’s giving an error.
Forum: Fixing WordPress
In reply to: Subscriber can't commentIs this a self hosted website with a WordPress theme, or, a site on WordPress.com?
Forum: Fixing WordPress
In reply to: Banner too smallPerhaps you need to size the image to the exact dimensions that it should be before uploading it to your site?
Forum: Fixing WordPress
In reply to: View Older PostsConsider this plugin as well:
Forum: Fixing WordPress
In reply to: Banner too smallThis sounds like a theme specific question. Which theme are you using and have you tried to contact the theme developer yet?
Forum: Fixing WordPress
In reply to: Dashboard not responding or slowIt looks like a javascript error with your theme.
Try activating the ‘twentyten’ theme and see if the problem is still there. If the problem goes away with ‘twentyten’, then it’s probably an issue with your theme.
Forum: Fixing WordPress
In reply to: Images (thumbnails) repeatingAfter reading through that plugins options page in the docs, I believe you need to make something like this with output template tags:
<?php popular_posts('limit=6&output_template=<li class="thumbnail"><a href="{url}"><img src="{image:0:40:40}" alt="{title}" /></a></li>'); ?>
Where the image options are as follow:
{image:number:width:height}
Sorry I can’t spend more time on hashing it out with you. ??
Forum: Plugins
In reply to: [WP Photo Album Plus] WPPAP Upgrade now shows "Undefined" on all the photosHi opajaap,
I reinstalled the plugin with fix 004, re-activated the Facebook function, and activated the rating system.
Everything appears to be working brilliantly!
scottpiro.com/photo-gallery/
Thank you for your efforts!
Forum: Fixing WordPress
In reply to: Images (thumbnails) repeatingThe plugin docs say that you can just check “Display post thumbnails” and it will automatically generate the featured images for the posts.
Forum: Fixing WordPress
In reply to: Images (thumbnails) repeatingCan you show the entire loop?
EDIT: Sorry, I didn’t read your entire post. Disregard about showing the loop….
Forum: Plugins
In reply to: [WP Photo Album Plus] WPPAP Upgrade now shows "Undefined" on all the photosI’m glad to help. Just post a message on this thread and I’ll be alerted to you needing me to test it.
Forum: Plugins
In reply to: [WP Photo Album Plus] WPPAP Upgrade now shows "Undefined" on all the photosI believe this to be the original author link:
https://shailan.com/wordpress/plugins/facebook-meta-tags-plugin/
If you’re asking where in the theme this function originated, I was calling it from my theme’s function.php file.
Forum: Plugins
In reply to: [WP Photo Album Plus] WPPAP Upgrade now shows "Undefined" on all the photosYou said to remove the Facebook plugin function I was using and removing it is what worked.
If you’re asking me what exactly in that function is what was causing the conflict, then I don’t have an answer for you. I don’t have enough knowledge of your plugin and how it interacts with the plugin I removed.
But here is the Facebook function I removed if it helps you:
function insert_facebook_metatags(){ global $wp_query; global $post; $thePostID = $wp_query->post->ID; if(is_single() || is_page()){ $the_post = get_post($thePostID); // The title $title = apply_filters('the_title', $the_post->post_title); // Description if($the_post->post_excerpt){ $desc = apply_filters('the_excerpt', $the_post->post_excerpt); } else { $text = strip_shortcodes( $the_post->post_content ); $text = apply_filters('the_content', $text); $text = str_replace(']]>', ']]>', $text); $text = addslashes( strip_tags($text) ); $excerpt_length = apply_filters('excerpt_length', 55); $words = preg_split("/[\n\r\t ]+/", $text, $excerpt_length + 1, PREG_SPLIT_NO_EMPTY); if ( count($words) > $excerpt_length ) { array_pop($words); $text = implode(' ', $words); $text = $text . "..."; } else { $text = implode(' ', $words); } $desc = $text; //wp_specialchars(strip_tags(do_shortcode( $the_post->post_content ), 'double')); } $type = "article"; $url = get_permalink( $the_post ); // Post thumbnail if( has_post_thumbnail( $thePostID )){ $thumb_id = get_post_thumbnail_id( $thePostID ); $image = wp_get_attachment_image_src( $thumb_id ); $thumbnail = $image[0]; } else { // get the logo $thumbnail = get_option( 'logo_url' ); } } else { $title = get_bloginfo('name'); $desc = get_bloginfo('description'); $type = "blog"; $url = get_home_url(); $thumbnail = 'https://scottpiro.com/wp-content/themes/scottpiro/images/default_avatar_visitor.gif'; } $site_name = get_bloginfo(); echo "\n<!-- Start of Facebook Meta Tags by shailan (https://shailan.com) --> "; echo "\n\t<meta property=\"og:title\" content=\"$title\" />"; echo "\n\t<meta property=\"og:type\" content=\"$type\" />"; echo "\n\t<meta property=\"og:url\" content=\"$url\" />"; echo "\n\t<meta property=\"og:image\" content=\"$thumbnail\" />"; echo "\n\t<meta property=\"og:site_name\" content=\"$site_name\" />"; //echo "\n\t<meta property=\"fb:admins\" content=\"USER_ID\"/>"; echo "\n\t<meta property=\"og:description\" content=\"$desc\" />"; echo "\n<!-- End of Facebook Meta Tags -->\n"; } add_action('wp_head', 'insert_facebook_metatags');
Forum: Plugins
In reply to: [WP Photo Album Plus] WPPAP Upgrade now shows "Undefined" on all the photosIt looks like that fixed the “undefined” issue! Thanks so much for hanging in there with me. ??