qzha017
Forum Replies Created
-
I think I have found out the problem, I am using the Front end user plugin as well, this is to prevent anyone except admin to access the dashboard (backend) and somehow it prevents anyone to access the media upload as well.
So if any user other than admin who need to upload images wont be able to do so, I was wondering if users (other than admin) are able to write and submit post without access backend then why can’t it let users upload files to media as well?And I can upload fine on the other plugin.
to solve this:
1.) I might have to remove the front end user plugin and use some other method of preventing backend access.2.) Hack into either front end user or WP frontend and change some source code so it force uploads without requiring admin access to media (which I have no Idea how to do)
Hey Reigel are your users able to access the backend of your site? if not how are you doing this?
Forum: Fixing WordPress
In reply to: How to disable WordPress auto-updateI was looking for the same answer and found this but I haven’t tested yet…since there isn’t new version of WP since my current one
place this snippet in your functions.php before the ?>
add_filter( ‘pre_site_transient_update_core’, create_function( ‘$a’, “return null;” ) );
any changes making to the functions.php you should back up the file first
hope it may help but again I am not 100% sure
Forum: Plugins
In reply to: [Q2W3 Post Order] css style with sticky posts?Ok
Thank you max thumbs up for meForum: Plugins
In reply to: [Q2W3 Post Order] css style with sticky posts?sweet I just needed to do the general style background color and it worked, but you mentioned <?php post_class(); ?> template tag I didnt do anything about it, so what will that do?
thanks Max
Forum: Fixing WordPress
In reply to: Blank page some times?!?Thank you linux4me2
I have reported the problem to my server and waiting for their reply, I dont want to do any changes just yet because the white page problem is not consistent, yesterday I was working on my site all day and didn’t experience anything so I suspect its my server side of things
Forum: Fixing WordPress
In reply to: Blank page some times?!?Alright things are going fast for me I followed some trouble shooting steps and obtained the error for my white blank page as follows:
Fatal error: Internal Zend error – Missing class information for in /server/mywebsite/wp-content/plugins/wp-super-cache/wp-cache-base.php on line 5
I am not getting this error in localhost
I guess I can solve this by clear all my cache and then deactivate the wp-super-cache?
anyone?
Forum: Fixing WordPress
In reply to: Blank page some times?!?Hi thanks linux4me2
I have written an e-mail to my server, hope they can help me sort out this problem.But the thing is I have a localhost install that is very much similar to the one that I have on the server, I mean all the plugins are the same, and I never have experienced any white screen on my localhost version.
The only difference I can think of is that my localhost install I changed the variable from 1000 to
`max_input_vars = 3000
suhosin.request.max_vars = 3000
suhosin.post.max_vars = 3000`in my php.ini because I had too much categories and it can’t handle with the default 1000 variable.
Could this be of any clue as to the white screen problem?
Awesome Matt got it to work but only after playing with it for a day.
The above link ask for password have you got other links or contact method for that extension?
also If I wanted to add the post thumb that is attached in the e-mail do I have to buy the html version?
Forum: Plugins
In reply to: [WP-Cirrus] get rid of the border box when hoveringYes I got it, but sadly my minify plugin just breaks it, it no longer moves…
but thank you anyways hogmark
let me update my question and make it more clearer
the following is in my loop-single.php<?php global $current_user; get_currentuserinfo(); if ($post->post_author == $current_user->ID) { ?> <a onclick="return confirm('you sure you want to delete?')" href="<?php echo get_delete_post_link( $post->ID ) ?>">delete post</a> <?php } ?>
I want to add the condition is this post in the category 7?
I assume I use the<?php in_category( $category, $_post ) ?>
But where and how do I add it?can anyone please help me out here
Hi Khoiruddin I tried your code it returned error.
I need to display current user’s favourite posts in the profile page, I am able to create a page say “favourites” and link it in the profile page, but I want to show the actual content of that favourites page listed on my profile page not a favourites link to the lists.
Can you please help me out?
Thanks in advanceForum: Plugins
In reply to: [Cimy User Extra Fields] error even checkbox is ticked?Yeah that’s what I used before but it didn’t work, it wont let me register always says “……should be YES” even though the check box is ticked.
So I have changed the approach, I used text instead of check box.
And it worked, so maybe I assume the plugin doesn’t want to acknowledge the “tick” as a “yes”
Where am I able to find the definition of the tick? (which file?)
Forum: Plugins
In reply to: [Front-End Users] [Plugin: Front-End Users] Further instructions and examplesHi Dominor Novus thanks for the instructional steps, however I am having trouble to add a link to the profile page. I want to add the author’s post link (the page showing all the posts the current user posted), can you or anyone else please teach me how to add it? I tried <?php the_author_posts_link(); ?> but not doing anything, sorry for being such a noob =/
Thanks everyone
AlexForum: Plugins
In reply to: [Cimy User Extra Fields] error even checkbox is ticked?sorry I cant be more descriptive as I am still building my site on localhost. However I have changed the input as text, made exact character to 3 (YES) and it worked ok, so maybe the plugin dosent want to accept the “tick” in the checkbox as a YES?
Thanks mrt31, that plugin solved my problem =)