wwalker
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Plugin to create posts from Facebook/Twitter/Instagram?so basically write my own using their API? That might be helpful for a developer but not for me. Any other ideas?
Forum: Plugins
In reply to: [WP Ultimate Search] Search Results OrderI see that the template can change the look and layout – but how do I change the sort order?
<?php if($wpus_results->have_posts()) : ?> <?php while($wpus_results->have_posts()) : $wpus_results->the_post(); ?>Forum: Plugins
In reply to: [WP Geo] Cannot get map to load on PageI got it working by installing the “WP Geo – Mashup Toolkit” plugin.
However I still can’t get it to load on the Category pages.
http://helpimhomeless.com/category/food-pantry/Forum: Plugins
In reply to: [WP Geo] short code map is not showing upYes – it is setup to show on posts and pages.
Here is a link to my settingsForum: Plugins
In reply to: [WP Geo] short code map is not showing upIt load just fine on posts. (as you can see from the link I provided above)
But I cannot get it to manual load on a page. I need a map with all locations or even those from a particular category – and I cannot get these to load on a “page”.
Forum: Plugins
In reply to: [WP Geo] short code map is not showing up?
Forum: Plugins
In reply to: [WP Geo] short code map is not showing upJust a few more details.
WP Geo Version 3.3.8
Wordpress Version 3.9.1
Theme is from elegantthemes.comForum: Fixing WordPress
In reply to: How can I search for and delete all of the bot user registrations?I know how to delete them, is there a plugin to tell me “who is bad” ?
I need some way of running a blacklist check against my user list.Forum: Themes and Templates
In reply to: Set featured image as div backgroundI think the problem I am having is when there is no feature image, the formula still returns a character or two.
For example, when there is no feature image, the above formula sets the background image to<div id="category-name" style="background-image: url('h')">ideas?
Forum: Themes and Templates
In reply to: Set featured image as div backgroundAlso some styling full width, no repeat, partially translucent, etc…
Forum: Themes and Templates
In reply to: Retrieving featured image URLstyledev, the code works.
However if there isn’t a featured image, how do I handle the “else” condition?My theme has a bg image for the div. I want it to be the featured image (if one is available) and the default image if one is not available.
Forum: Plugins
In reply to: [Simple Facebook Connect] Call to undefined function fb_login_button()I’m sure you get tons of emails everyday so I’ll try to reword my question to make it clear.
Is there a way to force a redirect (to the homepage) after a successful FB login connection?
Forum: Plugins
In reply to: [Simple Facebook Connect] Call to undefined function fb_login_button()Can I add something to this to make a successful login always redirect to the home page?
function sfc_connect_shortcode() { $login ='<fb:login-button perms="email" v="2" size="medium" '; if (function_exists('sfc_login_activation_check')) { $login .= 'onlogin="window.location=\''. wp_login_url() . "?redirect_to='+document.URL;\""; } $login .= '><fb:intl>'.__('Connect with Facebook', 'sfc').'</fb:intl></fb:login-button>'; return $login; }Forum: Plugins
In reply to: [Simple Facebook Connect] Call to undefined function fb_login_button()Yes Otto, it is working and the user is logging in. But they don’t know that they are logged in. Because nothing changes on the page, and it appears as though clicking the “connect with Facebook” only reloads the page, how will the users know they are logged in?
I have users clicking over and over again on that button expecting to be redirected to the home page (as though they are now logged in) or a status to change to let them know that they ARE logged in.Forum: Plugins
In reply to: [Simple Facebook Connect] Call to undefined function fb_login_button()ok – that works, but it doesn’t take the user anywhere. It just reloads the same page without any redirection.
Also, and as in previous comments from other users the button always says “connect with Facebook. How will the user know that they are connected?