Yeowza
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Login Page issue, random links on pageHello everyone,
You can fix this by updating the prettyPhoto scripts to the latest version. https://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/.
@thinkwebcentric, this should fix your problem also regardless of which theme your using.
We have a support forum available on our main site so it would be best to ask your questions there, https://mysitemyway.com/support.
Forum: Networking WordPress
In reply to: Scripting MU blog deletionAlso, just thought I’d add. I have this code setup on a separate php file,
// Load WordPress framework and WPMU api include('../../../wp-load.php'); require_once('../../../wp-admin/network/admin.php'); wpmu_delete_user('6'); wpmu_delete_blog('6', true);
And when I run that file in the browser it successfully deletes users/blogs.
Forum: Networking WordPress
In reply to: Scripting MU blog deletionI’m on 3.1.2 wordpress multisite, sorry Andrea_r.
Here is an example of what I have,
<?php /* Plugin information, etc etc */ wpmu_delete_user('6'); wpmu_delete_blog('6', true); ?>
And here is what I get,
Fatal error: Call to undefined function wpmu_delete_user() in /filepath/main.php on line 12
I tried including ms.php but no matter what I include there is always another dependency.. there is probably a certain way to load the multisite api and functions?
Thanks
Forum: Networking WordPress
In reply to: Scripting MU blog deletion@jschinker, I am trying to do the same thing (from a plugin) but I am also in dependency hell. Is there a special way to load the WPMU api?
Forum: Plugins
In reply to: Post FormatsThanks for the reply GATEKeeper.
I’ve found a few topics on it, https://wordpress.stackexchange.com/questions/10855/how-do-i-query-by-post-format-in-wordpress-3-1
But it does not seem to work for anyone. Maybe we’ll have a solution in the next update for this.
Forum: Plugins
In reply to: Post FormatsAnyone use post formats? ??
Forum: Plugins
In reply to: nav menus description allow HTMLLooks like that works!! Thanks very much biscuitstudios!
Forum: Plugins
In reply to: nav menus description allow HTMLshameless bump
Forum: Plugins
In reply to: Nested commentsi think i understand more now esmi, thx again
Forum: Plugins
In reply to: Nested commentshello esmi, thx for reply,
I took a look at your link but could not find anything about nesting / threaded comments.
Do you mean to say that I need to be using wp_list_comments() to get the comment_reply_link() to work?
If that is so then is there any way I can get comment_reply_link() to work without using wp_list_comments() ??
Forum: Themes and Templates
In reply to: the_excerpt(); into an arrayI guess what would make or break this idea is if the_excerpt() echoes out the info or returns a value..
I’m thinking echoes.. >_< Do you all see any way I could do this?
Forum: Themes and Templates
In reply to: Page templates, what are they for?Ok the error was from a plugin I was using, deleted the plugin and it works now
Forum: Themes and Templates
In reply to: Page templates, what are they for?On another note… just received this error here
Warning: Parameter 1 to update_comment_type_cache() expected to be a reference, value given in
I get it from this code here..
<?php query_posts('showposts=4'); while ( have_posts() ) : the_post(); ?> <?php endwhile; ?>
Forum: Themes and Templates
In reply to: Single.php and permalinksAh crap, sorry, I didn’t see the notice about .htaccess
Forum: Themes and Templates
In reply to: require(‘./wp-blog-header.php’);It works pretty good though Otto42. I am making a theme but it is more of a website with wordpress integrated into it. (But distributed like a theme)
Once I finish it i’ll show it off to ya