wdisk
Forum Replies Created
-
Hi matthewskeith,
It is possible within Types, please try edit your custom Taxonomy “Series.”
Enable option “Rewrite”,
option “Prepend posts with this slug” fill text “sermons”Hi pcole,
As you mentioned above:
I have tried to disable the Types plugin, hoping it will solve the issue but it does not.It is not a problem of Types, I suggest you try:
1) deactivate other plugins and switch to wordpress default theme,
2) enable wordpress debug mode, repeat the actions you mentioned above, and post the debug logs here.
http://wp-types.com/documentation/user-guides/debugging-types-and-views/Hi Lovepreet,
Could you post the PHP codes you are using for “show fields in only one category posts”?
I need test it
And if you are using Views plugin you can use shortcode [wpv-if] to sheck if current post is under the term, then display the custom fields.http://wp-types.com/documentation/views-shortcodes/#vf-153493
See the example:
Evaluating results of a custom function:
[wpv-if evaluate=”has_term(‘Test’, ‘post_tag’, null) = ‘1’”]Tagged Test[/wpv-if]Hi Kim,
I suggest you try this:
1) deactivate other plugins and switch to wordpress default theme,
2) enable wordpress debug mode, repeat the actions you mentioned above, and post the debug logs here.
http://wp-types.com/documentation/user-guides/debugging-types-and-views/Hi sushilsmailbox,
Sorry it is not possible within Types, but you can try use post ID as the coupon code, which is unique.
Hi mattjstar,
I can not duplicate same problem in my localhost,
Please try this:
1) deactivate other plugins and switch to wordpress default theme,
2) enable wordpress debug mode, repeat the actions you mentioned above, and post the debug logs here.
http://wp-types.com/documentation/user-guides/debugging-types-and-views/
Also check if there is any java-script error.If the problem still exists, please describe detail steps to duplicate same problem in a fresh wordpress installation, I need debug it in my localhost
Hi john,
It is not possible within Types, you can try other plugins, for example:
http://wordpress.org/plugins/search.php?q=Taxonomy+fieldHi magicke,
Please try enable wordpress debug mode, repeat the actions you mentioned above, and post the debug logs here.
http://wp-types.com/documentation/user-guides/debugging-types-and-views/Hi jjz0393,
Could you post a downloadable URL for the Flexform theme, we need duplicate same problem and debug in it
Hi malkesh,
It is possible, please try goto your WP admin side, Types-> Settings,
Enable option “Allow resizing of remote images ”
Hi jai317,
I suggest you try this:
1) deactivate other plugins and switch to wordpress default theme,
2) enable wordpress debug mode, repeat the actions you mentioned above, and post the debug logs here.
http://wp-types.com/documentation/user-guides/debugging-types-and-views/hi utilibre,
Types prepend “wpcf-” before your custom field slug,
Please try like this:
$key = 'custom';
if (get_post_meta($post->ID, 'wpcf-' . $key, true) == 2){
do something here...
}
Hi stacigh,
Please try deactivate other plugins and switch to wordpress default theme, and test again.
say something
Forum: Networking WordPress
In reply to: Using subdirectories on a subdomain such as intranet.xyz.comIt is not a problem use “intranet.xyz.com” as main site domain.
WordPress multisite support Sub-directory Network, see “Create A Network”
http://codex.wordpress.org/Create_A_Networkyou need change your .htaccess for a path-based network
SubFolder Example # BEGIN WordPress RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L] RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L] RewriteRule . index.php [L] # END WordPressGood luck!