Devin Price
Forum Replies Created
-
Forum: Plugins
In reply to: [Options Framework] Options page missing options after upgrade to WP 4.0.1There shouldn’t have been any breaking change, but glad you were able to get it resolved.
Forum: Themes and Templates
In reply to: [Portfolio Press] Front end hover on thumbnails just dissapearedLooks to be working for me.
Try hard refreshing your browser to clear any cached styles?
Thanks for the suggestion. We have this as a long-standing open issue:
https://github.com/devinsays/options-framework-plugin/issues/138Custom post types don’t automatically go out in your feed.
I believe this plugin would enable that:
https://ww.wp.xz.cn/plugins/custom-post-type-rss-feed/Forum: Themes and Templates
In reply to: [Portfolio Press] No image visible in ThumbnailYou need to set the featured image and make sure you have an image or gallery post format selected. Have you watched the video?
Forum: Themes and Templates
In reply to: [Portfolio Press] Widget placementCan you post a link to your site?
You should be able to have the sidebar right layout, and put widgets in that widget area.
Forum: Fixing WordPress
In reply to: Custom Menu Items for User InfoYou can do this with a menu walker. Here’s an example that outputs the logged in user’s e-mail in the menu:
function example_add_menu_navitem( $items ) { if ( ! is_user_logged_in() ) { return $items; } $user = wp_get_current_user(); $login_item = '<li class="login"><a href="' . get_site_url() . '">' . $user->user_email . '</a></li>'; $items .= $login_item; return $items; } add_filter( 'wp_nav_menu_items', 'example_add_menu_navitem' );Forum: Plugins
In reply to: [Options Framework] Plugin blocks loading of siteTry bumping the amount of memory you allocate to WordPress.
http://codex.ww.wp.xz.cn/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
You can also try disabling plugins that you’re not using.
If you’re using a child theme, functions.php would be the place. If you are editing the theme directly (i.e. not planning to update) you could just edit the existing function that adds body classes.
Forum: Plugins
In reply to: [Options Framework] Plugin blocks loading of siteAre you getting any error messages when WP_DEBUG is on?
The body classes are filtered to apply the “portfolio-view” class where it’s needed:
https://github.com/devinsays/portfolio-press/blob/master/extensions/portfolio-helpers.php#L57If you’re creating a custom page template and also need that class applied, you’ll have to add it with a custom body_class filter also.
Forum: Themes and Templates
In reply to: [Portfolio Press] Inconsistent image sizes on home pageYeah, it would make sense for the regenerate-thumbnails plugin to check for that. I’ll suggest it to the plugin author.
Forum: Themes and Templates
In reply to: [Portfolio Press] Resizing images on full-width-portfolioHave you regenerated the thumbnails?
http://ww.wp.xz.cn/extend/plugins/regenerate-thumbnails/Forum: Plugins
In reply to: Defaults while using Options FrameworkHi @jonathanalphonso. It would be better require options.php from your functions file on theme setup. Then it’s available to the function every time its called.
Forum: Plugins
In reply to: Defaults while using Options FrameworkGlad to hear you got it all worked out!