Mark_02660
Forum Replies Created
-
Forum: Plugins
In reply to: Plugin permissions and url / callbacks?I know the problem is that
page=single_display
It not a function WP associates with any permissions since I can use a different one that I do have a menu function registered for and get no problems.
So how do I do it?
Forum: Plugins
In reply to: [Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] Menu Link?What I am looking to do is this:
Main Menu have a “Photo Galleries” link that takes you to a page with all the albums on it and them you select a album to view and you see the images.
I see the “Page Link to” field in the album settings set it to a page I created but still nothing?
Forum: Plugins
In reply to: [Query Wrangler] Can't select anything in pop-up windows?Cleared cache and all is good!
Thank You!
Excellent work and support!
Forum: Plugins
In reply to: [Query Wrangler] Can't select anything in pop-up windows?So I can now actually select fields but not save the selections.
Forum: Plugins
In reply to: [Query Wrangler] Can't select anything in pop-up windows?Almost… The check boxes work but the update button will not work when selecting fields.
Forum: Plugins
In reply to: [Query Wrangler] Can't select anything in pop-up windows?That did it!
Thanks!
Forum: Plugins
In reply to: [Query Wrangler] Can't select anything in pop-up windows?So I just noticed the download of QW is version 1.5.3, but the one on my site still thinks 1.5.24 is the latest and greatest version. Do I just replace the directory with the new version contents or is a “update” script required.
(since it will not update on it’s own)
Forum: Plugins
In reply to: [Query Wrangler] Can't select anything in pop-up windows?version of QW = 1.5.24
version of WP = 4.1.1
Browser & OS = FireFox 35.0.1 and Chrome 40.0.2214.115 m on Win. 8.1How do I get QW 1.5.3, it is telling me 1.5.24 is the latest version?
Forum: Fixing WordPress
In reply to: $wpdb->num_rows not returning what I am looking forcatacaustic,
I never though about putting a LIMIT 1 clause in before, good idea.
Forum: Fixing WordPress
In reply to: $wpdb->num_rows not returning what I am looking forHi All,
Thanks, I did get it working the other day after finding that I had “get” options, get_var(), get_results() and so on.
This is what I came up with. And yes I know it does not echo properly, I was just testing.
$check = $wpdb->get_var( "SELECT COUNT(*) FROM $table_name WHERE id='$item_number'" ); echo "Item Number being checked: $item_number <br /> Found $check rown with that value in the db "; if($check != 0) { // item number already exists $error_msg.="<li>The item number is already in use</li>"; $item_number_css = 'formerror'; }
Forum: Hacks
In reply to: Prefered way to call pages?Thank You..
Forum: Plugins
In reply to: Having problem with dbDelta()More Info….
I renamed “condition” to “con” and it works fine. So why will condition not work?
Will not work ->
condition VARCHAR (500) DEFAULT '' NOT NULL,
Will work ->con VARCHAR (500) DEFAULT '' NOT NULL,
Forum: Plugins
In reply to: Having problem with dbDelta()I just added each column one by one and the one that is not working is
condition VARCHAR (500) DEFAULT '' NOT NULL,
Any suggestions?