Devin Price
Forum Replies Created
-
Forum: Plugins
In reply to: [Options Framework] Question Can you pick per page?You wouldn’t want to use the Options Framework for something like that. You would want to use post meta boxes.
Forum: Plugins
In reply to: [Options Framework] Plugin causes "An error occurred in the upload…"I haven’t heard any other reports of this, so my guess is that is more specific to your set up.
Are you using the same image when you test? What happens if you switch to the default WordPress theme and disable all plugins except for the Options Framework. Do you still get the error?
Forum: Plugins
In reply to: [Options Framework] Please add SVG support to media uploaderSure, I opened a ticket for this: https://github.com/devinsays/options-framework-plugin/issues/192.
I don’t see why SVG shouldn’t be supported- but I’ll need to test it.
Forum: Plugins
In reply to: [Options Framework] target="_blank" not working on hyperlinkSanitization for desc fields and info options has been removed:
https://github.com/devinsays/options-framework-plugin/commit/03a1a94cc2e00f9064a5511744ef09195bed39e5Look for it in the next update!
Looks like you got something working.
After you install the regenerate thumbnails plugin, it needs to be run. You can find that button under “Tools > Regen. Thumbnails”.
Forum: Themes and Templates
In reply to: [Portfolio Press] Portfolio theme paging not showingPaging should show up on all archive pages.
Amount of posts per page is set under “Settings > Reading Options” (I recommend 9).
If you have more than 9 posts, and paging it not showing up, try disabling all plugins to see if there is a conflict with one of them.
Forum: Themes and Templates
In reply to: [Portfolio Press] I dont have Theme Options in appearance menuHi Wendy. You need to have the Options Framework plugin installed:
http://ww.wp.xz.cn/plugins/options-framework/Forum: Plugins
In reply to: [Portfolio Post Type] Change Name of PortfolioExample here:
https://github.com/devinsays/portfolio-post-type/issues/16/** * Change portfolio tag slug for Portfolio Post Type plugin. * * @param array $args Existing arguments. * * @return array Amended arguments. */ function prefix_change_portfolio_tag_slug( array $args ) { $args['rewrite']['slug'] = 'portfolio-tag'; // Don't forget to visit Settings->Permalinks after changing these to flush the rewrite rules. return $args; }Forum: Plugins
In reply to: [Portfolio Post Type] Change Name of PortfolioForum: Plugins
In reply to: [Options Framework] Activated One Tone theme and got locked outIs this the theme?
http://ww.wp.xz.cn/themes/onetoneIf you’re getting that notice it probably means the theme bundled the plugin, so the plugin is not needed.
To get access again, log in via SFTP and delete the plugin. (Or some hosts have a web file browser that will allow you to do that).
Forum: Themes and Templates
In reply to: [Visual] Title overflowing on Mobile DevicesThanks for helping out in the forums @jitendra.
@androcton, I opened a GitHub issue for this and will attempt to find a solution for long site titles in mobile for the next release: https://github.com/devinsays/visual/issues/12
Sure, we can get that fixed in the next release. Thanks for pointing it out.
I opened a GitHub issue if you’d like to follow it:
https://github.com/govfresh/govpress/issues/60Hi. It would be impossible to create an option for every single item, we’re attempting to just cover the main spaces we think folks will want to customize.
You can always just a plugin like http://ww.wp.xz.cn/plugins/simple-custom-css/ if you need more fine-grained control over the CSS.
That said, if you feel like we missed something really big, let us know which exact items you think are most important and we’ll consider adding them in.
Forum: Plugins
In reply to: [Portfolio Post Type] Add portfolio post form in front page.GravityForms has a front end submission option. There may also be some other forms plugins that have that functionality, but I have not tested any.