bootsmaat
Forum Replies Created
-
Forum: Plugins
In reply to: How to aggregate social media streams in WordPressAny ideas? Please let me know if the question is not clear and I’ll try to explain.
Forum: Plugins
In reply to: Less options on profiles pageThank you, t31os_! It’s working.
Forum: Plugins
In reply to: Less options on profiles pageThank you, t31os_! This looks very promising. Actually, the elements are now hidden.
But: I get two php errors
Warning: Invalid argument supplied for foreach() in /Applications/MAMP/htdocs/schlueter_1/wp-admin/includes/user.php on line 369
Warning: Invalid argument supplied for foreach() in /Applications/MAMP/htdocs/schlueter_1/wp-admin/user-edit.php on line 271
Also, can you explain the jquery magic a bit so that I know how to customize it? For example I might want to hide additional elements.
Forum: Plugins
In reply to: [Plugin: Popularity Contest] cannot change popularity valuesI’ve found the solution.
Here’s how you can make the Popularity Values updating work:
In my case, the corresponding fields in the ak_popularity_options mysql table were missing. I had to add them manually. If you have the same problem, you can use the following sql:
INSERT INTO
your_prefix_ak_popularity_options
(
option_name,
option_value`) VALUES
(’searcher_value’, ‘2′),
(’single_value’, ‘10′),
(’home_value’, ‘2′),
(’archive_value’, ‘4′),
(’category_value’, ‘6′),
(’tag_value’, ‘6′),
(’feed_value’, ‘1′),
(’comment_value’, ‘20′),
(’pingback_value’, ‘50′),
(’trackback_value’, ‘80′);After that you can change the Popularity Values from the plugin options page.
Forum: Plugins
In reply to: archive.php page title: “Nothing found for …”Update: I noticed that the problem goes away when i deactivate the All in one SEO plugin.
Could it be that the plugin thinks “2008” is a post slug since my permalink structure leaves out the “archive part” and the link to the 2008 archive is “https://www.myblog.tld/Schsch/2008”?
Any ideas how I can still use the plugin?
Forum: Themes and Templates
In reply to: customize ShareThis popup: make it appear above linkAny ideas anyone?
Forum: Plugins
In reply to: installation problem with the api keyThanks, McCarroll21. This works for me.
To make this more clear for everyone:
Login to your admin dashboard and go to the plugins tab.
Next to WordPress.com Stats, click edit.
Find this:
$stats_wpcom_api_key = '';
Replace with this:
$stats_wpcom_api_key = '1a2b3c4d'; // replace this with YOUR api code!
Then save file change.
Forum: Plugins
In reply to: installation problem with the api keyI have the same problem. When I enter the API code (which works fine with aksimet), the plugin says
“Error from last API Key attempt:
parse error. not well formed”
I’m using WordPress 2.3.1 and WordPress.com Stats 1.1.1
Forum: Plugins
In reply to: Custom CSS for any postthanks! that’s exactly what I was looking for.
Forum: Fixing WordPress
In reply to: let user toggle post visibility by category oder tagThanks, Ivovic. The problem is that I want users to be able to see posts filed under several categories or tags at a time. As far as I know, this cannot be done with category links.
An example: Be default, business, politics, and sports are visible. The user should be able to turn off business posts. The remaining posts are those filed under politics and sports. With category links I can only display posts filed either under politics or under sports.
That is why I am afraid we have to go into the php code / mysql queries here. It’s just that I’m not sure how to do it exactly.