supernova42
Forum Replies Created
-
Forum: Plugins
In reply to: [Participants Database] Order on [pdb_single]HELP!!! Roland…
Forum: Plugins
In reply to: [Participants Database] Database Field Order Keeps ChangingWithout a doubt Roland the fields keep moving around. I put them in the order I want and when I go back to them the order has changed.
ThanksForum: Plugins
In reply to: [Participants Database] Simplified EditorYes I use TinyMCE Advanced which allows me to add or subtract the functions that are available. It works really well and allows me to limit what users can do. I find that if I give users too many choices they enter all types of horrid formatted text
Forum: Plugins
In reply to: [Asgaros Forum] The EditorThat is absolutely fantastic and it’s easy to implement. Just one thing – With regard to the Visual and Text mode, the Text mode is confusing for most so can I disable that mode too. I can’t see an option to do that.
Also, any modifications made to the editor apply to everyone even administrators. Can that be overridden so that administrators have the full editor.
Y-World gave me the following at one time but it doesn’t seem to work now.
/* Addition to Asgaros Forum to give enhanced editor for Administrators */
function my_editor_settings($options) {
if (current_user_can(‘manage_options’)) {
$options[‘teeny’] = false;
}
return $options;
}
add_filter(‘asgarosforum_filter_editor_settings’, ‘my_editor_settings’);Forum: Plugins
In reply to: [Participants Database] php output in wrong locationAbsolutely wonderful.
It’s easy, but I just couldn’t find it.
A thousand thanks….
Forum: Plugins
In reply to: [Asgaros Forum] The EditorIn your settings page you allow the use of a minimalistic editor. I would like to replicate that routine with a plugin I have. Can you give me some idea of how you do it please.
Many Thanks
Forum: Plugins
In reply to: [Asgaros Forum] Deleted UsersIs there a way that an administrator can access that deleted members data and assign it to another member. Administrators can already do with posts etc so why not do it with forum posts.
Forum: Plugins
In reply to: [Participants Database] Manage Database FieldsYes I will persevere with it Roland. If you think its better then thats good enough for me. I guess we just get comfortable using something a certain way and when its changed it can take a little time to get used to it.
Thanks as usual.
Forum: Plugins
In reply to: [Participants Database] Count for number of images uploadedThe uploaded images generated from the image expansion addon are stored in sitename.com/wp-content/uploads/participants-database/etc…
I’ve checked the folder and the photos from all members are lumped together. It would be good if they were in sub folders but they’re not. To make things worse there appears to be duplicate images in various formats. I initially thought it would be the simple matter of simply counting the images, but obviously that isn’t going to work.
When uploading images, the system checks to make sure that the maximum value isn’t exceeded. Is that number stored within the system – I’m referring to the uploaded images.
At the moment I list out the data stored in my fields (excluding the multi image field).
I have linked the name to the multi image field, so that when the user clicks on the name they will see all the images that have been uploaded. THe problem is that the user does not know how many images have been uploaded or if indeed any images have been uploaded.
I hope this makes sense as it’s rather awkward to explain.
Thanks
Forum: Plugins
In reply to: [Participants Database] http and www Website LInk SupportThis should read
www . website . com
The editor changed my text
I’ve had to put in spaces
Thanks
Forum: Plugins
In reply to: [Participants Database] Maximum value of ID being usedSimple for you Roland, but it didn’t look that simple to me. I will check it again after the effects of this bottle of wine have worn off.
What is the actual significance of Record_ID (id) and what is it used for?
Could I for example run a php routine to go through all my PDB records and rename the Record_ID (id) starting from say 1. It would finish at the number equivalent to the number of records in the database. Would this work or would it mess up the database?The other thing I keep meaning to ask is, What is the Private_ID used for as it appears to be made up of a random block of characters.
I know you’ve heard this many times before but this is definitely the best plugin on WordPress.
Thanks
Forum: Plugins
In reply to: [Participants Database] Does Record Existat the moment I use
if (empty($name)) {do this}
but I wondered if their was another command
Thanks
Forum: Plugins
In reply to: [Participants Database] Image Expansion KitIt seems to work after your latest update
Thanks
Forum: Plugins
In reply to: [Participants Database] Writing to a PDB RecordOkay thanks Roland, I have it working perfectly now.
One question about the value of id though which I will raise in another threadfor($i=1; $i<=1000; $i++) {
$data=Participants_Db::get_participant($i);
$user_id = $data[‘id’];
$username = $data[‘username’];
$boatname = $data[‘boat_name’];
if(!empty($username)) {
if (empty($boatname)) {
echo $username.’:’.$boatname.'<br>’;
$data = array();
$data[‘id’]=$user_id;
$data[‘username’]=$username;
$data[‘boat_name’]=’Name Needed’;
Participants_Db::write_participant($data);
}
}
}Forum: Plugins
In reply to: [Participants Database] Using php with PDBOkay many thanks