james-dg
Forum Replies Created
-
Forum: Plugins
In reply to: WP User Frontend image uploadHi there Ian,
Have you downloaded the latest version of the Plugin?Forum: Plugins
In reply to: [WP-PageNavi] [Plugin: WP-PageNavi] Pagenavi showing wrong number of pages.Hey again,
I managed to fix it myself using This materialI was just using this:
<?php wp_pagenavi(); ?>
When instead i needed to use this:<?php wp_pagenavi( array( 'query' => $my_query ) ); ?>
Forum: Plugins
In reply to: [WP-PageNavi] [Plugin: WP-PageNavi] First and Last buttons.Yes ??
You provided a link and the current version I’m running now.Forum: Themes and Templates
In reply to: Sidebar and Main Content Physcial GapYou’ll need to give each divider a colour.
Your Divider “#main” has a white background so I’d start by removing that.
once you have removed that you are going to have to have to give each of the dividers a back ground colour.
as shown in this imageI’d say go with esmi’s answer though and get some help from css-discuss.
I don’t agree with firefox though ??
Chrome has the inspect element feature built in and it just seems to run much more smoothly for me then firebug.Forum: Themes and Templates
In reply to: Sidebar and Main Content Physcial Gaphave you got a link to the site?
Forum: Plugins
In reply to: [amr users] [Plugin: amr-users] Suddenly broke. . . .getting this too when I reset everything
Can’t create/write to file ‘/tmp/#sql_6c6_0.MYD’ (Errcode: 17)]@evalulu
If you are trying to display the data in he custom fields I tend to use this little guide.Should be some help ??
Forum: Plugins
In reply to: [Geo Mashup] [Plugin: Geo Mashup] Front end update locationTDO Forms
Its a extremely customizable plugin and is used for creating forms ??I just wanted a permanent location setting. not one for posts based on their location.
Forum: Plugins
In reply to: [Geo Mashup] [Plugin: Geo Mashup] Front end update locationBrilliant ??
I’m still gonna stick with my solution though because I have integrated it in a few places on the site.
Good luck dude ??Forum: Plugins
In reply to: [Geo Mashup] [Plugin: Geo Mashup] Front end update locationThanks ??
That sucks ??
If you don’t want to use TDO would it be possible to use gravity forms ?
if not I have a feeling you are going to have to code alot of this yourself ??Forum: Plugins
In reply to: [Geo Mashup] [Plugin: Geo Mashup] Front end update locationHey,
I used a completely different plugin to work around this issue.
I added fields to the profile so a user can enter an address . . Then using This plugin I used the short code directly in the template file and made the template so the users address was printed in-between the short code and there the map is.
Doing it this way is messy as hell but it allows the user to enter their address in once and then there is no need to add your location on a separate map ??
Hope some of that made sense ??Forum: Themes and Templates
In reply to: Show 4 posts then echo some divs then more postsEDIT:
added a link for my code on pastebinForum: Fixing WordPress
In reply to: Custom fields check for inputThank you Esmi ??
I had to alter it slightly because it wouldn’t show the closing tag on the link.<a target="_blank" href="https://www.facebook.com/<?php $user = $curauth; if ($user->ID) { $value = cimy_uef_sanitize_content(get_cimyFieldValue($user->ID, 'FACEBOOKURL')); }?> <?php echo $value ?>"> <?php if( $value && $value !='' ):?><img src="<?php bloginfo('template_directory'); ?>/images/fbicon.png" alt="Find us on facebook"/><?php endif;?>
Forum: Fixing WordPress
In reply to: Custom fields check for input<a href=" <?php $user = $curauth; // is there someone logged? if ($user->ID) { $value = cimy_uef_sanitize_content(get_cimyFieldValue($user->ID, 'FACEBOOKURL')); echo $value; }?>"> <img src="<?php bloginfo('template_directory'); ?>/images/fbicon.png" alt="find us on facebook"/></a>
Not sure If i’m even doing it right :’)
Forum: Fixing WordPress
In reply to: Membership and ads systemThanks Esmi.
I have a feeling I’m going to have to heavily edit this plugin :\