rikardo85
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] PHP syncing issueHi Konrad,
Thank you so much. That worked!
Thanks again
Hi,
Thank you for the reply. I’ve sent an email via the tools > diagnostics
Hi,
When adding content and updating/publishing the page doesn’t save the fields. If I add the content a second time it does save.
Is it possible to fix this as it can be time consuming to add the fields fields, update/publish the page and then add content and update.
I’m having the same issue.
The email address entered is not receiving the email message.
Any help appreciated.
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Lines Pressed TogetherI’m also receiving the same issue.
I’ve selected to reinstall fonts and also checked that the fonts folder is writable.
For a quick fix, I deactivated the plugin and uploaded and activated version 1.6.6.
The PDF invoices display with no issues.Any other suggestions to help fix version 2.0.4 much appreciated.
Thanks
I’m looking to implement this!
Any help much appreciated!
Is it possible for administrators to create sub directories?
Regards,
Forum: Fixing WordPress
In reply to: Display tags from specific category in select formThe above code generates a list of all tags.
I would like to display only tags that are from posts assigned to a specific category.
Forum: Fixing WordPress
In reply to: Add custom post type title and category to shortcode attributeThank you so much!
Works a treat ??
Thanks again
Forum: Fixing WordPress
In reply to: Add custom post type title and category to shortcode attributekarpstrucking,
Thanks for replying.
That’s exactly what I’m looking to do.
Forum: Fixing WordPress
In reply to: Add attributes to shortcode for custom post typesI want the ability to show members by:
– Name (page title)
– Category (taxonomy)
– limit to displaye.g [myteam title=”member name” category=”taxonomy name” display=”2″]
I’ve got a list of team members (custom post type) that appear when adding [myteam] to a page.
But on some page I want the ability to just add one specific team member (using something like the parameters given in the shortcode above)
Hope that makes sense.
Forum: Fixing WordPress
In reply to: Add attributes to shortcode for custom post typesI’ve altered the shortcode slightly, removing the php files:
Thank for helping
Forum: Fixing WordPress
In reply to: Add attributes to shortcode for custom post typesI’m currently using:
add_shortcode( 'myteam', 'mysite_team_sc' ); function mysite_team_sc() { if (get_option('my_team_grid_display') == '2') // if grid display has been selected. { include( plugin_dir_path( __FILE__ ) . 'templates/my_team_grid.php'); } else { include( plugin_dir_path( __FILE__ ) . 'templates/my_team_list.php'); } }
Forum: Fixing WordPress
In reply to: Making radio button default value on plugin setting pageThanks for the tip.
Found a solution using:
<input type=”radio” name=”ms_faq_accordion_style” id=”faq-list-check” value=”” checked=”checked” />
Forum: Fixing WordPress
In reply to: Custom post type not obeying stylesBrilliant, Thanks for all your help.