swcoinco
Forum Replies Created
-
Plugin not working on FireFox ver.90.0 (64 bit). All that shows is the preloader image (loading.gif).
Hi @shelbelliott,
The issue has been handed over to @southernb on this end. Please see Support Thread “List Veiw Default Page Missing Events” for the requested information, including:
- Test Results
- Link
- System Information
Regards
I might add that I have the number of events to show per page set to 10.
Forum: Plugins
In reply to: [WP SEO Structured Data Schema] Custom post typeI found a solution:
In “wp-seo-structured-data-schema/lib/classes/KcSeoMetaData.php”
Line 10:
$this->postType = get_post_types();
Replace with:
$postType = get_post_types();
And on line 19:
foreach($this->postType as $postType){
Replace with:
foreach(get_post_types( '', 'names' ) as $postType){
Thanks again Phil for a great plugin!
Forum: Plugins
In reply to: [WP SEO Structured Data Schema] Custom post typeLove this plugin…
However, could use the added functionality of using the plugin with custom post types, as soon as, a few months ago.Any quick fix to get this working now prior to the next update?
Forum: Plugins
In reply to: [Form Manager] Enter dynamic data in Private FieldsAnyone using this plugin have a solution to use shortcode or PHP in the private (hidden) form fields?
Forum: Plugins
In reply to: [Form Manager] Enter dynamic data in Private FieldsI’m trying to use the private fields to submit user meta. The only way I can see to do that is use code in the input.
This was resolved by deleting the parser and creating it again.