clairedelune
Forum Replies Created
-
For posterity, in case anyone else needs a similar solution, I found an updated version of the script that is written to work better in the blocks system:
https://www.wpbeginner.com/wp-tutorials/how-to-display-recent-posts-from-a-specific-category-in-wordpress/So, using the Code Snippets plugin, I modified the code to suit my objective including with properly positioned post featured images:
function faq_postsbycategory() { // the query $the_query = new WP_Query( array( 'category_name' => 'faq', 'posts_per_page' => 10, 'order' => 'ASC', 'orderby' => 'link' ) ); // The Loop if ( $the_query->have_posts() ) { $string .= '<div class="postsbycategory widget_recent_entries">'; while ( $the_query->have_posts() ) { $the_query->the_post(); if ( has_post_thumbnail() ) { $string .= '<p>'; $string .= '<b><a href="' . get_the_permalink() . '"rel="bookmark">' . get_the_post_thumbnail($post_id, array( 200, 100) ) . get_the_title() . '</a></b><br><h7>Posted: ' . get_the_date() . '</h7><br>' . get_the_excerpt() . '</p>'; } else { // if no featured image is found ADD EXCERPT CODING // $string .= '<p><a href="' . get_the_permalink() .'" rel="bookmark">' . get_the_title() . '</a><br><h7>Posted: ' . get_the_date() . '</h7><br>' . get_the_excerpt() . '</p>'; } } } else { // no posts found } $string .= '</div>'; return $string; /* Restore original Post Data */ wp_reset_postdata(); } // Add a shortcode add_shortcode('faq-posts', 'faq_postsbycategory');
Here is the styling I have used:
.postsbycategory img { float: left; margin-left: 5px; margin-right: 20px; margin-top: 5px; margin-bottom: 5px; } .postsbycategory p { padding-bottom: 30px; }
Lastly, as posted earlier, I enclosed the
[faq-posts]
shortcode within an additional<div></div>
to be certain that everything is contained within its own discrete container.Thank you again @bcworkz.
Thank you for responding again.
I will try working with some CSS and see how I go with that.
Your assistance is greatly appreciated.
I am wondering if I need to work further in the line:
$content .= '<p class="excerpt">'.$featured_image.' '.get_the_excerpt(). '</p>';
I should have clarified further:
* Firstly, I know virtually nothing about PHP coding and have jumped in the deep end on this.
* The result I am trying to achieve is to use this custom function to REPLACE a plugin so that I can delete the plugin and reduce the loading times on my site.
* Currently the above code is pulling a featured image that is not attached to/associated with any of the posts in the listing produced.
* When I tried changing the code to
$featured_image = the_post_thumbnail( array( 'class' => 'alignleft' ) );
it then produced a page with all the right post thumbnails but they were all clumped together at the top of the page.* The Code is working correctly in listing the posts but it is not quite positioning the images where they should be placed when I use
$featured_image = the_post_thumbnail( array( 'class' => 'alignleft' ) );
It looks as though they are being positioned where they would be if they were rendering on a post as opposed to within a listing of results on a page.* I need the $featured_image to display adjacent to their associated excerpts.
What am I missing in understanding?
- This reply was modified 3 years, 4 months ago by clairedelune.
- This reply was modified 3 years, 4 months ago by clairedelune.
Forum: Plugins
In reply to: [Search Regex] Site technical problem – PHP update error triggered?? How is this progressing?
Thank you for the update, I just installed it.
Forum: Plugins
In reply to: [WooCommerce] Messages banner issue.Apologies for the delay in responding.
I will try on a pc, it is persisting in my iOS Safari browser even after clearing caches and deactivating content blockers. I’ll let you know when it is done.
Forum: Plugins
In reply to: [Advanced Editor Tools] Compatibility Update??? Timeline for this?
Ok, that’s good to know. I will keep an eye out for the update.
Forum: Plugins
In reply to: [Flexy Breadcrumb] Compatibility Update?Brilliant, thanks so much.
Forum: Plugins
In reply to: [WooCommerce] Messages banner issue.It’s ok, I managed to grab it manually.
Here it is:
### WordPress Environment ### WordPress address (URL): https://**********.com.au Site address (URL): https://**********.com.au WC Version: 5.6.0 REST API Version: ? 5.6.0 WC Blocks Version: ? 5.5.1 Action Scheduler Version: ? 3.2.1 WC Admin Version: ? 2.5.1 Log Directory Writable: ? WP Version: 5.8 WP Multisite: – WP Memory Limit: 2 GB WP Debug Mode: – WP Cron: ? Language: en_AU External object cache: – ### Server Environment ### Server Info: Apache PHP Version: 7.4.11 PHP Post Max Size: 1,000 MB PHP Time Limit: 30 PHP Max Input Vars: 5000 cURL Version: 7.71.0 OpenSSL/1.1.1d SUHOSIN Installed: – MySQL Version: 5.6.49-cll-lve Max Upload Size: 1,000 MB Default Timezone is UTC: ? fsockopen/cURL: ? SoapClient: ? DOMDocument: ? GZip: ? Multibyte String: ? Remote Post: ? Remote Get: ? ### Database ### WC Database Version: 5.6.0 WC Database Prefix: wp_ Total Database Size: 43.09MB Database Data Size: 38.82MB Database Index Size: 4.27MB wp_woocommerce_sessions: Data: 0.43MB + Index: 0.02MB + Engine MyISAM wp_woocommerce_api_keys: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_attribute_taxonomies: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_downloadable_product_permissions: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_order_items: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_order_itemmeta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_tax_rates: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wp_woocommerce_tax_rate_locations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_shipping_zones: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_shipping_zone_locations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_shipping_zone_methods: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_payment_tokens: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_payment_tokenmeta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_woocommerce_log: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_actionscheduler_actions: Data: 0.01MB + Index: 0.02MB + Engine MyISAM wp_actionscheduler_claims: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_actionscheduler_groups: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wp_actionscheduler_logs: Data: 0.01MB + Index: 0.01MB + Engine MyISAM wp_admin_columns: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_b2s_posts: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wp_b2s_posts_drafts: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_b2s_posts_favorites: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_b2s_posts_network_details: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_b2s_posts_sched_details: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_b2s_user: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wp_b2s_user_contact: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_b2s_user_network_settings: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_blogmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_blogs: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_blog_versions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_cmplz_cookiebanners: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_cmplz_cookies: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_cmplz_dnsmpd: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_cmplz_services: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_commentmeta: Data: 0.08MB + Index: 0.03MB + Engine InnoDB wp_comments: Data: 0.08MB + Index: 0.09MB + Engine InnoDB wp_dae_linkmeta: Data: 0.01MB + Index: 0.03MB + Engine MyISAM wp_dae_links: Data: 1.35MB + Index: 0.05MB + Engine MyISAM wp_dae_subscribermeta: Data: 0.01MB + Index: 0.03MB + Engine MyISAM wp_dae_subscribers: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wp_gdpr_cc_options: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_mailpoet_custom_fields: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_mailpoet_dynamic_segment_filters: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_mailpoet_feature_flags: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_mailpoet_forms: Data: 0.01MB + Index: 0.00MB + Engine MyISAM wp_mailpoet_log: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_mailpoet_mapping_to_external_entities: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_mailpoet_newsletters: Data: 0.75MB + Index: 0.00MB + Engine MyISAM wp_mailpoet_newsletter_links: Data: 0.40MB + Index: 0.16MB + Engine MyISAM wp_mailpoet_newsletter_option: Data: 0.01MB + Index: 0.01MB + Engine MyISAM wp_mailpoet_newsletter_option_fields: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wp_mailpoet_newsletter_posts: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_mailpoet_newsletter_segment: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_mailpoet_newsletter_templates: Data: 7.85MB + Index: 0.00MB + Engine MyISAM wp_mailpoet_scheduled_tasks: Data: 0.16MB + Index: 0.05MB + Engine MyISAM wp_mailpoet_scheduled_task_subscribers: Data: 0.25MB + Index: 0.21MB + Engine MyISAM wp_mailpoet_segments: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wp_mailpoet_sending_queues: Data: 4.75MB + Index: 0.01MB + Engine MyISAM wp_mailpoet_settings: Data: 0.02MB + Index: 0.00MB + Engine MyISAM wp_mailpoet_statistics_clicks: Data: 0.01MB + Index: 0.02MB + Engine MyISAM wp_mailpoet_statistics_forms: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_mailpoet_statistics_newsletters: Data: 0.01MB + Index: 0.02MB + Engine MyISAM wp_mailpoet_statistics_opens: Data: 0.01MB + Index: 0.04MB + Engine MyISAM wp_mailpoet_statistics_unsubscribes: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_mailpoet_statistics_woocommerce_purchases: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_mailpoet_stats_notifications: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_mailpoet_subscribers: Data: 0.00MB + Index: 0.02MB + Engine MyISAM wp_mailpoet_subscriber_custom_field: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_mailpoet_subscriber_ips: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_mailpoet_subscriber_segment: Data: 0.01MB + Index: 0.01MB + Engine MyISAM wp_mailpoet_user_flags: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_mail_bank: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_mail_bank_logs: Data: 0.21MB + Index: 0.00MB + Engine MyISAM wp_mail_bank_meta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_mlw_qm_audit_trail: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_mlw_questions: Data: 0.05MB + Index: 0.00MB + Engine MyISAM wp_mlw_quizzes: Data: 0.03MB + Index: 0.00MB + Engine MyISAM wp_mlw_results: Data: 0.01MB + Index: 0.00MB + Engine MyISAM wp_moblc_link_details_table: Data: 0.03MB + Index: 0.01MB + Engine MyISAM wp_moblc_scan_status_table: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_newsletter: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_newsletter_emails: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_newsletter_sent: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_newsletter_stats: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_newsletter_user_logs: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_options: Data: 2.41MB + Index: 0.16MB + Engine InnoDB wp_postmeta: Data: 3.38MB + Index: 0.61MB + Engine InnoDB wp_posts: Data: 6.47MB + Index: 0.23MB + Engine InnoDB wp_registration_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_signups: Data: 0.02MB + Index: 0.06MB + Engine InnoDB wp_site: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_sitemeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_termmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_terms: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_term_relationships: Data: 0.06MB + Index: 0.02MB + Engine InnoDB wp_term_taxonomy: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_tm_taskmeta: Data: 0.10MB + Index: 0.02MB + Engine MyISAM wp_tm_tasks: Data: 0.07MB + Index: 0.02MB + Engine MyISAM wp_usermeta: Data: 0.05MB + Index: 0.03MB + Engine InnoDB wp_users: Data: 0.02MB + Index: 0.05MB + Engine InnoDB wp_wc_admin_notes: Data: 0.02MB + Index: 0.00MB + Engine MyISAM wp_wc_admin_note_actions: Data: 0.01MB + Index: 0.00MB + Engine MyISAM wp_wc_category_lookup: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wc_customer_lookup: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wc_download_log: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wc_order_coupon_lookup: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wc_order_product_lookup: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wc_order_stats: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wc_order_tax_lookup: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wc_product_meta_lookup: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wp_wc_reserved_stock: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wc_tax_rate_classes: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wp_wc_webhooks: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wfblockediplog: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wfblocks7: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wfconfig: Data: 3.07MB + Index: 0.02MB + Engine MyISAM wp_wfcrawlers: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wffilechanges: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wffilemods: Data: 3.09MB + Index: 0.62MB + Engine MyISAM wp_wfhits: Data: 0.39MB + Index: 0.04MB + Engine MyISAM wp_wfhoover: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wfissues: Data: 0.08MB + Index: 0.03MB + Engine MyISAM wp_wfknownfilelist: Data: 1.65MB + Index: 0.19MB + Engine MyISAM wp_wflivetraffichuman: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wflocs: Data: 0.01MB + Index: 0.00MB + Engine MyISAM wp_wflogins: Data: 0.25MB + Index: 0.06MB + Engine MyISAM wp_wfls_2fa_secrets: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_wfls_settings: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wfnotifications: Data: 0.04MB + Index: 0.01MB + Engine MyISAM wp_wfpendingissues: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wfreversecache: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wfsnipcache: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wfstatus: Data: 0.18MB + Index: 0.07MB + Engine MyISAM wp_wftrafficrates: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_wpfm_backup: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wp_zbscrm_api_keys: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_zbs_admlog: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_zbs_aka: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_zbs_companies: Data: 0.02MB + Index: 0.06MB + Engine InnoDB wp_zbs_contacts: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_zbs_customfields: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_zbs_dbmigration_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_zbs_dbmigration_posts: Data: 0.02MB + Index: 0.06MB + Engine InnoDB wp_zbs_events: Data: 0.02MB + Index: 0.06MB + Engine InnoDB wp_zbs_event_reminders: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_zbs_externalsources: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_zbs_forms: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_zbs_invoices: Data: 0.02MB + Index: 0.08MB + Engine InnoDB wp_zbs_lineitems: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_zbs_logs: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_zbs_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_zbs_notifications: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_zbs_object_links: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_zbs_quotes: Data: 0.02MB + Index: 0.08MB + Engine InnoDB wp_zbs_quotes_templates: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_zbs_security_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_zbs_segments: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_zbs_segments_conditions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_zbs_settings: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_zbs_sys_cronmanagerlogs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_zbs_sys_email: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_zbs_sys_email_hist: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_zbs_tags: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_zbs_tags_links: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_zbs_tax_table: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_zbs_temphash: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_zbs_tracking: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_zbs_transactions: Data: 0.02MB + Index: 0.14MB + Engine InnoDB ### Post Type Counts ### attachment: 479 customize_changeset: 5 custom_css: 1 dae_download: 35 ec_store: 15 elementor_library: 2 jetpack_migration: 2 jp_img_sitemap: 2 jp_sitemap: 2 jp_sitemap_master: 2 mailpoet_page: 1 nav_menu_item: 8 oembed_cache: 11 page: 41 post: 62 product: 47 qmn_log: 2 qsm_quiz: 2 revision: 59 shop_coupon: 2 shortcoder: 201 ### Security ### Secure connection (HTTPS): ? Hide errors from visitors: ? ### Active Plugins (25) ### Akismet Anti-Spam: by Automattic – 4.1.10 miniOrange Broken Link Checker/Finder: by miniOrange – 2.0.2 Classic Editor: by WordPress Contributors – 1.6.2 Comment Reply Email Notification: by Arno Welzel – 1.13.0 Download After Email: by MK-Scripts – 2.1.1 Yoast Duplicate Post: by Enrico Battocchi & Team Yoast – 4.1.2 Flexy Breadcrumb: by PressTigers – 1.1.4 GDPR Cookie Compliance (CCPA, PIPEDA ready): by Moove Agency – 4.5.8 Head Meta Data: by Jeff Starr – 20210713 Jetpack Boost: by Automattic – 1.2.0 Jetpack: by Automattic – 10.0 Limit Login Attempts Reloaded: by Limit Login Attempts Reloaded – 2.23.1 MailPoet 3 Premium (New): by MailPoet – 3.67.0 MailPoet 3 (New): by MailPoet – 3.67.0 Search Regex: by John Godley – 2.4.1 Shortcoder: by Aakash Chakravarthy – 5.5 Shortcodes Ultimate: by Vladimir Anokhin – 5.10.2 Advanced Editor Tools (previously TinyMCE Advanced): by Automattic – 5.6.0 Big File Uploads: by Infinite Uploads – 2.0.1 UpdraftPlus - Backup/Restore: by UpdraftPlus.com DavidAnderson – 1.16.60 WooCommerce Shipping & Tax: by WooCommerce – 1.25.18 WooCommerce: by Automattic – 5.6.0 Wordfence Security: by Wordfence – 7.5.5 WP-Optimize - Clean, Compress, Cache: by David Anderson Ruhani Rabin Team Updraft – 3.1.12 Jetpack CRM: by Automattic – 4.2.3 ### Inactive Plugins (0) ### ### Dropin Plugins (1) ### advanced-cache.php: advanced-cache.php ### Must Use Plugins (1) ### installatron_hide_status_test.php: by – ### Settings ### API Enabled: – Force SSL: – Currency: AUD ($) Currency Position: left Thousand Separator: , Decimal Separator: . Number of Decimals: 2 Taxonomies: Product Types: external (external) grouped (grouped) simple (simple) variable (variable) Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog) exclude-from-search (exclude-from-search) featured (featured) outofstock (outofstock) rated-1 (rated-1) rated-2 (rated-2) rated-3 (rated-3) rated-4 (rated-4) rated-5 (rated-5) Connected to WooCommerce.com: – ### WC Pages ### Shop base: #103 - /shop/ Cart: #4340 - /cart/ Checkout: #4341 - /checkout/ My account: #4342 - /account/ Terms and conditions: #83 - /legals/terms-of-use/ ### Theme ### Name: GeneratePress Version: 3.0.4 Author URL: https://tomusborne.com Child Theme: ? – If you are modifying WooCommerce on a parent theme that you did not build personally we recommend using a child theme. See: How to create a child theme WooCommerce Support: ? ### Templates ### Overrides: – ### Action Scheduler ### Complete: 49 Oldest: 2021-08-05 04:40:58 +0000 Newest: 2021-08-21 01:59:26 +0000 ### Status report information ### Generated at: 2021-08-21 13:19:55 +08:00
Forum: Plugins
In reply to: [WooCommerce] Messages banner issue.Thanks. It is very long and I can’t seem to copy it using my iPad. How can I get it for you?
Forum: Plugins
In reply to: [Flexy Breadcrumb] Compatibility Update?I am very well indeed, thanks! I’m sure that you are fine too.
Good to here that the update is next week. I look forward to it.
Forum: Reviews
In reply to: [Shopping Cart & eCommerce Store] Deeply DisappointingThank you for your reply Josh.
Interesting to note that this negative feedback gets a reply before the support request email that I sent you on 24 August. That was 15 days ago now.
I sent another one this morning with some of the above details just in case you didn’t get it yet.
I actually love the cart but the glitches as really causing problems regardless of how proud you are of the price point.
Please either extend and streamline the functionality of the downloads or don’t have them because I have already explained to you months ago that right now I am not in a position to utilise the Amazon S3 service. In the future yes, but today I am a fledgling business and need the right business partners to get there.
Are you the right business partner?Mailpoet doesn’t support shortcodes in the actual email content.
Shortcodes use square brackets and are designed to extend functions, place widgets and automate repetitive tasks and text insertions but they are treated strictly as code by Mailpoet and so the brackets and everything inside them gets left out.
Change the brackets to something else and that should make the needed text display in the emails.
Hope that helps.