benclintz
Forum Replies Created
-
Forum: Plugins
In reply to: [XML Sitemap Generator for Google] An unknown error has occurred (805303f4)Hey Jessie33 and anyone else who is facing the same error.
I was able to solve the error!
Go to your Sitemap-core.php file located in your cpanel/wp-content/plugins/google-sitemap-generator/sitemap-core.php
function GetDefaultStyle() { $p = $this->GetPluginPath(); if(file_exists($p . "sitemap.xsl")) { $url = $this->GetPluginUrl(); //If called over the admin area using HTTPS, the stylesheet would also be https url, even if the blog frontend is not. if(substr(get_bloginfo('url'),0,5) !="https" && substr($url,0,5)=="https") $url="http" . substr($url,5); return $url . 'sitemap.xsl'; } return ''; }
Remove the above code and add below code
function GetDefaultStyle() { $p = $this->GetPluginPath(); if(file_exists($p . "sitemap.xsl")) { return '/wp-content/plugins/google-sitemap-generator/sitemap.xsl'; } return ''; }
For more step by step instructions you can read https://rosamundwo.com/2011/solved-google-xml-sitemap-stylesheet-error/
Hi wwyz83, how were u able to display such a large image without distorting its quality on link2? i have been trying to work around that but anything above 150 X 150 on force image height is distorting.
Forum: Plugins
In reply to: [BuddyPress Featured Member] how to display ?Hello Janak Champaneri!
just in case you have not solved the problem yet, check that you have buddypress and the plugin installed then make sure you have at least 3 clients, but more is better, and on the buddypress members mark the members you want to display in the slider as featured.
Hope this helpsHey Nally123,
Had the same problem with the 404 error but i resolved it by changing the permalinks to category.
Go to the permalinks settings then on the custom structure add /%category% just before /%postname%/Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Displaying Pods by CategoryThanks Scott it worked!!
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Displaying Pods by CategoryHey Scott Thanks for your help, I actually noticed that my problem was displaying custom fields in archive pages. I have managed to display the title and summary but i am having some problems with the image. My code in archive.php loop is:
<h4 class="excerpt-title"><a>"><?php echo get_the_title(); ?> </a></h4> <?php $postimageurl = get_post_meta($post->ID, 'tiny_pic', true); if ($postimageurl) { ?> <a>" rel="bookmark"><img src="<?php echo $postimageurl; ?>" alt="Post Pic" class="tinyPic " width="150" height="150" /></a> <?php } else { ?> <a>" rel="bookmark"><img src="<?php bloginfo('template_url'); ?>/images/wprecipes.gif" class="tinyPic" alt="Screenshot" width="150" height="150" /></a> <?php } ?> <div id="summary"><?php echo get_post_meta($post->ID, 'summary', true); ?></div> <div id="readmore"><a>">Read More</a></div>
My image is in a custom field pod
I only have the image frame but it is not displaying the image. Pliz assist on this.Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Displaying Pods by Categoryi have a post pod called kenya_safaris
and a category pod called safari_category
i have this in my archive.php
<?php
$selected = pods_url_variable(-1);
$pods= new Pod(‘kenya_safaris’);
$params[‘select’] = ‘*’;
$params[‘orderby’] = ‘t.name’;
$params[‘limit’] = 25;
$params[‘where’] = ‘category.name LIKE “‘.$selected.'”‘;
echo $pods->find( $params )->template( ‘Safari_Template’ );
?>
is there anything that i am doing wrong? coz i cant display post per categoryForum: Plugins
In reply to: [Posts for Page] Pagination not working on main pageI have moved to pods framework. its a little bit complicated but works fine
Forum: Plugins
In reply to: [Widget Settings Importer/Exporter] Fatal/Syntax ErrorHey ecabral, Sorry for the long wait
Mine worked but some settings didn’t so i had to do it manually. If you go to tools, you should have a widget setting export menu. on the widget setting export page you should select all or some of the widgets you want to export (i suspect you are leaving all blank).Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Dispaly ImagesThanks Scott. I really appreciate your help
i have tried<h4><a href="{@permalink}">{@post_title}</a></h4> <div> <?php if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it. the_post_thumbnail(); } ?> </div> <div>{@summary} <a href="{@permalink}">Read More</a> <hr /> </div>
[Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
the title and summary/excerpt are ok but i am still having a problem with the image (which happens to be in the post)
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Dispaly Imagescould you kindly give me an example. Iam quite new to php i have already figured out how to call the title and the xcerpt. its just that i am having a problem with calling the post image
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Dispaly Imagesit is a custom post type. (like post or pages)
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Dispaly Imagesthis is in the pod template that i am creating. i want to display the title, excerpt and pull the first image and probably resize it as well
Forum: Plugins
In reply to: [Widget Settings Importer/Exporter] Fatal/Syntax ErrorYou are welcome Pameladamus
Forum: Plugins
In reply to: [Widget Settings Importer/Exporter] Fatal/Syntax ErrorHi Ecabral, here is a simpler solution :go to the developers tab of this plugin and scroll down to older version. download V 1.0 and it will work fine