mdisch
Forum Replies Created
-
Forum: Plugins
In reply to: [FormCraft - Form Builder] Failed SavingHow can I make the DB tables writable?
Forum: Plugins
In reply to: [CSSIgniter Shortcodes] Anchor tag doesn't work for tabsI’m not good with javascript. What I did was adding the following code after the end of [/tabs] shortcode.
<script> jQuery(document).ready(function($) { var hash = window.location.hash; if ( ~hash.indexOf( 'tab' ) ) { $( 'a[href="' + hash + '"]' ).trigger( 'click' ); } }); </script>Is that correct place to add the code? Also, should I replace ‘tab’ to ‘Event Coordination’, which it looks like this?
if ( ~hash.indexOf( 'Event Coordination' ) ) {It still doesn’t work.
Forum: Fixing WordPress
In reply to: Curious about recurring post.php hacksterndata, the post/question is for mvidberg.
Forum: Fixing WordPress
In reply to: Curious about recurring post.php hackDid you find out what caused post.php file re-appearing in the root wordpress folder? I’m having the same issue lately.
Forum: Plugins
In reply to: [CSSIgniter Shortcodes] Some attributes do not workWorks like a charm, thanks!
Forum: Plugins
In reply to: [CSSIgniter Shortcodes] Some attributes do not workThanks Anastis, do you know when the update will become available?
Forum: Plugins
In reply to: [CSSIgniter Shortcodes] Some attributes do not workI retyped [tabs border_color=”#ffffff”] and [/tabs] in the Text mode and the border color is still in light blue.
Why isn’t the border color changed?
Found some error in my php5.ini file and fixed it. Upload worked successfully.
Perhaps you need to add php.ini (for PHP 4) or php5.ini for (PHP 5) in your root directory and add the codes in the file which allows uploading files.
rg_emulation = off
allow_url_fopen = on
memory_limit = 1000M
post_max_size = 150M
file_uploads = On
upload_max_filesize = 100MI have same problem after upgraded to WP3. I got message saying 0 picture(s) successfully added affter uploading an image.
Looks like NextGEN Gallery isn’t working correctly with WP3 with upload images.
Forum: Fixing WordPress
In reply to: Is it safe to delete the “Admin” user ?I had admin user changed to Subscriber role for testing purposes, and then I cannot change it back to Administrator. There is no other adminisitrator user on the User list. Is there a way to manually change it back, perhaps through phpMyAdmin? I do not see where I can edit value for role in wp_users.
Thanks in advance for your assistance.
Forum: Fixing WordPress
In reply to: Web Design Help – Gaming CommunityDo you know any of plugins that can restrict posts to be viewed by registered users only without using password-protected posts? Will bbPress or BuddyPress do that?
Forum: Fixing WordPress
In reply to: Register/login with user nameHow do you redirect to a page after logging out using wp_loginout();?