heatstroke
Forum Replies Created
-
Forum: Plugins
In reply to: [KK I Like It] Count likes for each authorYes,
I did it, although I had to modify the plugin’s code to do it. I made a line in the code and also added a column in the database where the plugin stores the information.
If you are still interested, I can tell you what lines I have modified.
If you are not going to modify the plugin, sorry.. I have no other solution.
Forum: Fixing WordPress
In reply to: Press This opens blank windowJust want to say that it works fine on localhost, I was wront when I made the first post
Forum: Fixing WordPress
In reply to: Press This opens blank windowNobody? Am I the only one with this problem?
Forum: Plugins
In reply to: [CPT-onomies: Using Custom Post Types as Taxonomies] Custom post categoriesOk,
I was starting to believe I am stupid because I could not find this option haha
I will use another plugin that already has this option, but I promise to keep an eye on yours, I like it ??
Thanks
Forum: Plugins
In reply to: [WP Fastest Cache] HTML loaded twiceProblem solved!
Just deleted some lines from theme’s code that were trying to input custom style. For some reason, after deleting these options, it works like a charm ??
Thanks
Forum: Plugins
In reply to: [WP Fastest Cache] HTML loaded twiceOk, there is a problem with my theme. I have just tried changing the theme and it works OK.
I must now find what part of the theme is causing this problem. Could you please take a look at my link with firebug? Maybe you can spot something there that is wrong. How can I send it to you?
Thank you ??
Forum: Plugins
In reply to: [WP Fastest Cache] HTML loaded twicewell.. I also have a problem with a 404 Not Found in the cache folder..
I will check it later. If I find the solution I will post it here
Forum: Plugins
In reply to: [WP Fastest Cache] HTML loaded twiceHi,
sorry to answer so late.
Here is my screen:
https://i.imgur.com/8g9rJlc.jpg
No problem to tell you the url, although no here, because I am still working on the site, not open to public yet.
Thanks
Forum: Plugins
In reply to: [Post Meta Box Order] Change hash?Single..
I will try later some more times. Hope to succeed ??
Forum: Plugins
In reply to: [Post Meta Box Order] Change hash?yes, I have put it in this order:
//Right Cloumn $posts_widgets_order_right_column[] = 'categorydiv'; $posts_widgets_order_right_column[] = 'postimagediv'; $posts_widgets_order_right_column[] = 'tagsdiv-post_tag'; $posts_widgets_order_right_column[] = 'submitdiv';
I must be doing something wrong…
Forum: Plugins
In reply to: [Post Meta Box Order] Change hash?Thanks for the reply ??
Well.. I can’t make it. As admin user I change my meta boxes. Everything is OK after I refresh the page, the changes are still there.
In the code I force users to use my configuration, but when I login with a normal user account, there are no changes. I change the hash, and there are still no changes. The boxes do not appear in the same order as I set with the admin user.
Forum: Plugins
In reply to: [Simple User Listing] Show only users with at least 1 postI use exclude because it is supposed to have less users with 0 posts than users with 1 or more posts.
On the other hand, I don’t really worry about the updates for now. I can always modify the code again.
I don’t know what is the pre_user_query and don’t know how to pass a specific query_id in the shortcode. That would be uselful though…
Forum: Plugins
In reply to: [Simple User Listing] Show only users with at least 1 postWell, I could make it but my solution is useless for you because I have my database modified with a couple of custom columns.
What I did was basically modify the plugin’s code.
Search for line 120:
global $post, $sul_users, $user;
after this line I have this:
global $wpdb; $superarray = array(); $exclude_users = $wpdb->get_results("SELECT ID FROM lw_users WHERE last_post_date = '0000-00-00 00:00:00'"); foreach ($exclude_users as $us) { $superarray[] = $us->ID; }
I changed line 126:
'exclude' => '',
and put my array in it, to exclude users I need:
'exclude' => $superarray,
so what you need to do is a query to retrieve the IDs of the users you want to exclude.
It won’t work just like this. It gave me an error, expecting array. So then I changed line 181 and just removed the whole line. Remove this
$exclude = array_map( 'trim', explode( ',', $exclude ) );
Regards
Forum: Plugins
In reply to: [Quick Paypal Payments] User multiple paypal emailsOk, I appreciate this. But I could do it with another plugin. I will keep an eye on your plugin because I like it, but unfortunately I have no time to test. Just needed something that works ??
Thank you
Forum: Plugins
In reply to: [Simple User Listing] Show only users with at least 1 postUseful links indeed ??
My problem is, just as in other posts, to join these mysql queries with the plugin’s script and using WP’s coding.
Will be searching arround, if I succeed, I will let you know.
If someone has new ideas, they are welcome here ??