fxfuture
Forum Replies Created
-
Sorry I mean this post
Ok no problem. I guess PayPal Pro would be the most sensible option anyway.
I see you have posted a blog about adding additional fields to the checkout page and edit profile pages here
So, would that enable me to include an application form on the checkout with whatever fields I want and they would be added to the user’s profile page in the admin panel?
Thank you but there seems to be an issue with expiring membership.
I’ve just edited the membership expiry date for a user to a date in the past, and the user still has access to restricted content and on their account page it still says their account is active even though the expiry date shown is in the past.
Shouldn’t it say something like… Your membership has expired. Renew now
Also, is there a way to customize when the reminder email is sent out and the content of it?
Forum: Plugins
In reply to: Custom post types & breadcrumbsUse the development version of Breadcrumb NavXT – it works perfectly with custom post types.
Forum: Plugins
In reply to: Nextgen gallery click outside the picture to close galleryUse Thickbox as oppose to the default viewer – in the options
Forum: Plugins
In reply to: Custom post types & breadcrumbsI’m trying to do this too. Whereabouts do you put that code?
Forum: Themes and Templates
In reply to: Child themes, templates and pages?Great, I’ll do that then. Thanks!
Forum: Themes and Templates
In reply to: Child themes, templates and pages?Thanks – makes sense.
Actually in terms of my users, they won’t have access to the ‘Pages’ admin. I’ve made it really simple by creating custom post type menu items for the content they can edit.
For example, there’s a menu item called Website Text, which lists all the site’s editable text regions and I reference these in the corresponding pages.
But so far as using plugins such as the NextGen Gallery, it’s best to create a custom page template called photos.php and use the do_shortcode() function to display it?
Forum: Plugins
In reply to: [New plugin] Page managerNice plugin – any way to use it with custom post types?
Just trying to find out how to do this too.
I don’t know much php so this is probably not the most elegant solution but if you put the update the album extended template with the below code it works!
<?php /** Template Page for the album overview (extended) Follow variables are useable : $album : Contain information about the album $galleries : Contain all galleries inside this album $pagination : Contain the pagination content You can check the content when you insert the tag <?php var_dump($variable) ?> If you would like to show the timestamp of the image ,you can use <?php echo $exif['created_timestamp'] ?> **/ ?> <?php if (!defined ('ABSPATH')) die ('No direct access allowed'); ?><?php if (!empty ($galleries)) : ?> <div class="ngg-albumoverview"> <!-- List of galleries --> <?php foreach ($galleries as $gallery){ echo do_shortcode("[nggallery id=".$gallery->gid."]"); } ?> <!-- Pagination --> <?php echo $pagination ?> </div> <?php endif; ?>
Forum: Plugins
In reply to: Plugin: Shortcode GeneratorSame here. Did you get it working in the end or finding a similar plugin?
Forum: Plugins
In reply to: Menu item to edit text on pages – what plugin can do this?This looks like a great plugin!
But unfortunately as it’s limited to 5 templates and requires Silverlight it’s not suitable for this particular use.
Might have to design my own plugin. I only know basic php but I’m pretty good at picking things up and piecing stuff together.
How hard is it? Any good tutorials or resources you can recommend?
Forum: Fixing WordPress
In reply to: Making a very simple user friendly CMS?Thanks for the reply. I agree, after really looking into WordPress more I see the possibilites are endless.
I’ve actually nearly achieved what I want. Just on the last hurdle and made a post about it here – https://www.ads-software.com/support/topic/menu-item-to-edit-text-on-pages-what-plugin-can-do-this?
Wondering if you know of a plugin that can do this?
Forum: Plugins
In reply to: Menu item to edit text on pages – what plugin can do this?Ok, so I’ve worked out how to query and return the contents of the More Types posts with PHP. And this actually works very nicely. For those interested, locate the ID from the WP MySQL database and call it with the following PHP:
$mytext = $wpdb->get_results("SELECT post_content FROM $wpdb->posts WHERE ID = 1"); echo $mytext->post_content;
But… their must be a simple plugin as I described above that can be called in a page with something like:
[text-content id=1]
[text-content id=2]etc…
Forum: Fixing WordPress
In reply to: Making a very simple user friendly CMS?Very simple for us, but could be confusing for a complete novice, compared to a very basic CMS which only displays content they can edit.