Jens Wedin
Forum Replies Created
-
+1: I would love the same thing ??
Forum: Plugins
In reply to: [Plugin: Custom Field Taxonomies] Adding Count To DisplayDid you find a way for this?
Forum: Plugins
In reply to: [Plugin: Custom Field Taxonomies] Is this possible with the plugin?Hi
AGE and COUNTRY are custom fields in my setup (I use Magic Fields which is a custom fields plugin).
SQL stuff is not my cup of tea, anyone else knows?
/Jens
Forum: Plugins
In reply to: [Plugin: Custom Field Taxonomies] Is this possible with the plugin?Hi
What I think you want works with this plugin. Check out my site
https://chwisgi.com/?age=15
or
https://chwisgi.com/?country=usaCheers,
JensForum: Plugins
In reply to: Custom Field Taxonomies – Remove empty custom fieldsAhh, thanks! No problem with the late reply
Forum: Plugins
In reply to: WordPress syntax mode for Coda editorThanks!
Forum: Fixing WordPress
In reply to: Search & replace custom field dataSo to answer my own question for the future, this is what I wrote, please note that the backticks are WRONG.
UPDATE 'wp_postmeta' SET 'meta_value' = replace(meta_value, '/wp-content/uploads/', '') WHERE 'meta_key' LIKE 'top_photo_url'
I got the code examples from this site
https://brockangelo.com/2009/03/18/search-and-replace-a-custom-field-in-wordpress-using-phpmyadmin/
Forum: Fixing WordPress
In reply to: Backup users (sql) and passwordThanks!
Forum: Fixing WordPress
In reply to: Backup users (sql) and passwordSo, the password will still work if I import the users and their metadata into a new fresh site?
Forum: Fixing WordPress
In reply to: Maxed out Memory problemHere are also some other plugins that might helping find the problem
https://www.ads-software.com/extend/plugins/search.php?q=debug
Forum: Fixing WordPress
In reply to: Maxed out Memory problemI’m having kind of same problem. My site feels kind slow and I have hard time finding what is causing the problem. It would be great to have some kind of help when debugging and finding what the problem can be. I installed a plugin that might be of help.
https://www.ads-software.com/extend/plugins/wp-pear-debug/
This plugin you can see sql queries which is good. It would be nice to be able to see cpu and memory usage somehow, is that possible in any way?
/Jens
Forum: Plugins
In reply to: [Plugin: wp pear debug] Useful informationThanks for the plugin!
Just a note. You need the
<?php wp_footer(); ?>
In the footer.php for this plugin to work.
Forum: Plugins
In reply to: [Plugin: Custom Field Taxonomies] Magic fields and Custom fields taxonomiesThanks scribu for taking your time. I have produced some errros.
First, the settings
Using a plain theme, cleanr.
I turned off all plugins and only trying CFT and GDSR plugin.
In the wp-config.php I use define(‘WP_DEBUG’, true);
In the meta.php I have <?php the_excerpt(); ?> forHere is the php error output when:
CFT turned on , GDSR turned off and <?php the_excerpt(); ?>
https://pastebin.com/f1e087994Here is the php error output when:
CFT on, GDSR is on and <?php the_excerpt(); ?>
https://pastebin.com/f1ba267aNotice the warning I get from line 85. Is this a GDSR or CFT problem, could this be what causing the problem?
Cheers,
JensForum: Plugins
In reply to: [Plugin: Custom Field Taxonomies] Magic fields and Custom fields taxonomiesI have some more info on this, I will let you know when I am at my computer at home.
Forum: Plugins
In reply to: [Plugin: Custom Field Taxonomies] Magic fields and Custom fields taxonomiesI been playing around with another theme; cleanr and just added the meta.php template. I can still reproduce the problem with this theme.
If I use the below code it shows the articles filtered by the CFT plugin for example /?age=15
<?php the_content('Read more...'); ?>
But if I have this in the template I get a blank page
<?php the_excerpt(); ?>