dubya1337
Forum Replies Created
-
Forum: Plugins
In reply to: [WangGuard] Can't connect to the WangGuard server.OK thanks.
I had to close registration on one site because it has suddenly been getting hammered with suspicious registrations, but I won’t bother my host just yet. I’m sure WangGuard will sort it out before too long.Forum: Plugins
In reply to: [WangGuard] Can't connect to the WangGuard server.Anybody else getting this?
Connectivity tab:
Unable to find WangGuard servers.
A DNS problem or firewall is preventing all access from your web server to wangguard.com. WangGuard cannot work correctly until this is fixed.API tab:
The key you entered could not be verified because a connection to wangguard.com could not be established. Please check your server configuration.
I am not aware of any changes on my server.
No problem. Your link made me suspicious. I see so much link SPAM that everything starts looking like it after a while. It’s making me cRazY :-S.
@industrialmanlifts
Please post new questions in a new thread. This thread is about customizing one of the widgets.EDIT: Hmm… looks like that is just a SPAM post. Can somebody delete it?
Forum: Plugins
In reply to: [SEO Ultimate] [Plugin: SEO Ultimate] sitemapHi marcacer.
I’ve only just started testing this plugin today. So far I am very impressed, but it looks like sitemaps, lawn mowing and dish washing are just about the only things this plugin does not do. ??There are lots of plugins to handle sitemaps.
Even better.
Thanks scribu.
I figured it out:
around line 42, look for this:$args = array_merge($args, array( 'orderby' => 'rand', 'showposts' => 1, ));
Add this:
'post_type' => 'your_post_type_goes_here',
So you end up with:
$args = array_merge($args, array( 'orderby' => 'rand', 'post_type' => 'your_post_type_goes_here', 'showposts' => 1, ));
I’m using AppThemes Vantage, so I use
'post_type' => 'listing',
??
Forum: Plugins
In reply to: [WP-dTree] [Plugin: WP-dTree] custom post typesHmmm… Spoke too soon. I just found this post from 10 months ago. I can’t seem to get the links to work right either.
Forum: Plugins
In reply to: [bbPress] "Create some forums" — how can I see them?Ahhhh… I was banging my head against this one for a while.
So, you need to create the wp pages needed for each bbpress template. Got it.Forum: Plugins
In reply to: [Stout Google Calendar] Word Press not importing Calendar InformationHey theperthurbanist
A quick Google search would be the best place to start. Just make sure to make a back up copy (just incase).Forum: Installing WordPress
In reply to: Fatal Error after Automatic upgradation to ver 3.2Buddypress 1.2.9 is out: https://buddypress.org/2011/07/buddypress-1-2-9/
I renamed my /buddypress folder to /buddypress-old, and uploaded 1.2.9 to /buddypress.
Whew! Disaster averted ??Forum: Installing WordPress
In reply to: Fatal Error after Automatic upgradation to ver 3.2I have the same problem as smartmwp above. So the solution is to revert to an earlier version of BuddyPress?
Don’t forget to include
$after_title
. Your theme (or any future themes you switch to) may require it to close a div or some such.This makes the title a link:
if ( $show_name ) { echo $before_title . '<a href="../events">' . $title . '</a>' . $after_title; }
This puts a link after the title:
if ( $show_name ) { echo $before_title . $title . ' - <a href="../events">View All</a>' . $after_title; }
I think I’ll use the latter. Thanks for the idea ??
Have a look near line 68 of stout-gc-widget.php
I would imagine that you could wrap$title
within a hyperlink.
If that works, all of your stout widgets would link to the same URL.Hmmm… wonder if I could use this myself…
Forum: Plugins
In reply to: [Stout Google Calendar] Word Press not importing Calendar InformationAdding
Header set X-UA-Compatible "IE=EmulateIE8
to your .htaccess file seems to do the trick (for now).