Title: specstanza's Replies | WordPress.org

---

# specstanza

  [  ](https://wordpress.org/support/users/specstanza/)

 *   [Profile](https://wordpress.org/support/users/specstanza/)
 *   [Topics Started](https://wordpress.org/support/users/specstanza/topics/)
 *   [Replies Created](https://wordpress.org/support/users/specstanza/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/specstanza/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/specstanza/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/specstanza/engagements/)
 *   [Favorites](https://wordpress.org/support/users/specstanza/favorites/)

 Search replies:

## Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Frontend Admin by DynamiApps] Cant edit form in backend anymore](https://wordpress.org/support/topic/cant-edit-form-in-backend-anymore/)
 *  [specstanza](https://wordpress.org/support/users/specstanza/)
 * (@specstanza)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/cant-edit-form-in-backend-anymore/#post-15982421)
 * Hi [@bjoerneidnes](https://wordpress.org/support/users/bjoerneidnes/) !
    I had
   the same issue after updating and just found a solution – I can’t make it has
   it was anymore (bugged).
 * On backend, the only thing you should have is a dropdown list (‘Select a type:
   Public interface form’).
 * Select ‘Edit publication form’ (something like that) and update your form : this
   should re-load the Form editing interface.
 * Good luck, hope it will work for you too!
    -  This reply was modified 3 years, 10 months ago by [specstanza](https://wordpress.org/support/users/specstanza/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Jetpack - WP Security, Backup, Speed, & Growth] get_the_post_thumbnail conflict](https://wordpress.org/support/topic/get_the_post_thumbnail-conflict/)
 *  Thread Starter [specstanza](https://wordpress.org/support/users/specstanza/)
 * (@specstanza)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/get_the_post_thumbnail-conflict/#post-15494948)
 * **UPDATE – RESOLVED**
    – new Childtheme – new plugin Health Check & Troubleshooting–
   returned something was missing (imagick) – setup hosting-side .php settings to
   unable imagick – found [this post](https://stackoverflow.com/a/43977125) – tried
   code on .index.php + .home.php + front-page.php – “Customize” (upper admin bar)
   > Content options > De-ticked and re-ticked everything for full post or post 
   excepert.
 * Thank you for your support! Hope this will help other users!
    -  This reply was modified 4 years, 3 months ago by [specstanza](https://wordpress.org/support/users/specstanza/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Jetpack - WP Security, Backup, Speed, & Growth] get_the_post_thumbnail conflict](https://wordpress.org/support/topic/get_the_post_thumbnail-conflict/)
 *  Thread Starter [specstanza](https://wordpress.org/support/users/specstanza/)
 * (@specstanza)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/get_the_post_thumbnail-conflict/#post-15494622)
 * Hi [@lastsplash](https://wordpress.org/support/users/lastsplash/) – many thanks
   for your suggestions
 * > If you try using just the “CarListings” theme, does it work without an issue?
   > You could test that to confirm it works with Jetpack.
 * I’ve installed the CarListings theme and having the exact same issue.
 * > You might try the general WordPress forms as this doesn’t appear related to
   > Jetpack.
 * I’m sorry but I strongly disagree: this happens when Jetpack is active – so it
   does seem related to me.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Jetpack - WP Security, Backup, Speed, & Growth] get_the_post_thumbnail conflict](https://wordpress.org/support/topic/get_the_post_thumbnail-conflict/)
 *  Thread Starter [specstanza](https://wordpress.org/support/users/specstanza/)
 * (@specstanza)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/get_the_post_thumbnail-conflict/#post-15486276)
 * Hi [@erania-pinnera](https://wordpress.org/support/users/erania-pinnera/) !
    
   Thank you for your reply. 🙂 It does seem to work by switching theme (TwentyTwentyOne)
   and `get_the_post_thumbnail` on `index.php` page.
 * I forgot to mention that – with my theme – `get_the_post_thumbnail` works when
   on `single.php` page.
    I did read everything I could [about templates hierarchy](https://developer.wordpress.org/themes/basics/template-hierarchy/)
   but it doesn’t solve my issue for my front-page.php.
 * You are right : this is not easy for you to help when my website is in Maintenance
   Mode. In case it’s relevant, here is my template ‘hierarchy’ and news.php code(
   which is pretty basic) :
    - front-page.php : get_template_part(‘/home/news’)
    - /home/news.php contains the following php code :
 *     ```
       <?php
       /**
        * The template for displaying posts
        *
        * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
        *
        * @package MyCustomTheme
        */
       ?>
   
       <ul id="slider-id" class="slider-class">
           <?php
           $recent_posts = wp_get_recent_posts(array(
               'numberposts' => 4, // Number of recent posts thumbnails to display
               'post_status' => 'publish' // Show only the published posts
           ));
           foreach( $recent_posts as $post_item ) : ?>
               <li>
                   <a href="<?php echo get_permalink($post_item['ID']) ?>">
                       <?php get_the_post_thumbnail($post_item['ID'], 'full'); 
       /* As mentionned in first post, I've tried several method to retrieve post_thumbnails when calling latest posts */ ?>
                       <p class="slider-caption-class"><?php echo $post_item['post_title'] ?></p>
                   </a>
               </li>
           <?php endforeach; ?>
       </ul>
       ```
   
 * Thank you for your attention on my issue,
 * **UPDATE**
    Just find a line in my template functions.php :
 *     ```
       /**
        * Load Jetpack compatibility file.
        */
       require get_template_directory() . '/inc/jetpack.php';
       ```
   
 * When commented, page content returns Fatal Error :
    `carlistings_get_featured_posts()
   in /home/wp-content/themes/carlistings/template-parts/featured-content.php`
 * So I guess the ‘base’ template (CarListings) can indeed work with JetPack plugin.
    -  This reply was modified 4 years, 3 months ago by [specstanza](https://wordpress.org/support/users/specstanza/).
    -  This reply was modified 4 years, 3 months ago by [specstanza](https://wordpress.org/support/users/specstanza/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooPayments: Integrated WooCommerce Payments] site_id mismatch error – WC Payments](https://wordpress.org/support/topic/site_id-mismatch-error-wc-payments/)
 *  Thread Starter [specstanza](https://wordpress.org/support/users/specstanza/)
 * (@specstanza)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/site_id-mismatch-error-wc-payments/#post-15452007)
 * Hi everyone,
 * I believe I’ve tried everything to solve my issue – forgetting the most basic
   stuff!
 * Here’s what I did:
    - switched theme
    - disabled plugins to find the guilty one
    - read a lot of documentation ([thread #1](https://wordpress.org/support/topic/sorry-you-are-not-allowed-to-access-this-page-71/))
    - uninstall, reinstall WC components
    - comment my functions.php so no WC function where involved
    - Disconnect from WordPress.com several times
    - Re-affect permissions from the FTP (following [these steps](https://www.wpkube.com/fix-the-sorry-you-are-not-allowed-to-access-this-page-error/)),
      new .htaccess file, checked the DataBase for wp_capabilities
 * THE SOLUTION : was [right under my nose](https://wordpress.org/support/topic/cant-approve-connection-to-woocommerce-com/)!
   
   Auttomatic solutions are synchronized – I didn’t want to install JetPack plugin,
   but it was the very solution to solve the problem! To anyone would enconter the
   same issue – do this and everything will be fine!
    -  This reply was modified 4 years, 4 months ago by [specstanza](https://wordpress.org/support/users/specstanza/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooPayments: Integrated WooCommerce Payments] site_id mismatch error – WC Payments](https://wordpress.org/support/topic/site_id-mismatch-error-wc-payments/)
 *  Thread Starter [specstanza](https://wordpress.org/support/users/specstanza/)
 * (@specstanza)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/site_id-mismatch-error-wc-payments/#post-15438596)
 * Hi everyone,
    Setting up manually my domain records didn’t solve the issue. I’ve
   tested one way on my website’s clone : – deactivate every plugin – update every
   woocommerce plugin => everything worked like a charm on the clone website
 * So I’ve set my CNAME records as it was before on my hoster and tried to do the
   same on the real website.
 * Still trying to setup WC Payments, I now have this permissions related message:
   *
   Désolé : vous n’avez pas la permission d’accéder à cette page.* *Sorry: you don’t
   have the permissions to access this page*
 * URL is : wp-admin/admin.php?page=wc-admin&path=%2Fpayments%2Fconnect
 * Any idea?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooPayments: Integrated WooCommerce Payments] site_id mismatch error – WC Payments](https://wordpress.org/support/topic/site_id-mismatch-error-wc-payments/)
 *  Thread Starter [specstanza](https://wordpress.org/support/users/specstanza/)
 * (@specstanza)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/site_id-mismatch-error-wc-payments/#post-15432378)
 * Hi [@battouly](https://wordpress.org/support/users/battouly/)
    Thank you for 
   your reply! I’ve open a support request as an “Help with my account” request (
   cannot provide System Status Report – I don’t have access to my dashboard since
   this site_id mismatch error). Thank you again,
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GamiPress - bbPress integration] Custom bbpress event](https://wordpress.org/support/topic/custom-bbpress-event/)
 *  Thread Starter [specstanza](https://wordpress.org/support/users/specstanza/)
 * (@specstanza)
 * [4 years, 12 months ago](https://wordpress.org/support/topic/custom-bbpress-event/#post-14683155)
 * Your work is amazing guys!
    Thank you very much for this update!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GamiPress - bbPress integration] Custom bbpress event](https://wordpress.org/support/topic/custom-bbpress-event/)
 *  Thread Starter [specstanza](https://wordpress.org/support/users/specstanza/)
 * (@specstanza)
 * [5 years ago](https://wordpress.org/support/topic/custom-bbpress-event/#post-14654942)
 * Hi [@pacogon](https://wordpress.org/support/users/pacogon/) ! Thank you very 
   much for you reply.
    Indeed, I’ve started programming for a couple of weeks so…
   yeah, struggling with this. ^^’
 * Many thanks for pushing my problem as a development suggestion, I look forward
   to see it in action!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Auto Listings - Car Listings & Car Dealership Plugin for WordPress] Specs order](https://wordpress.org/support/topic/specs-order/)
 *  Thread Starter [specstanza](https://wordpress.org/support/users/specstanza/)
 * (@specstanza)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/specs-order/#post-14563329)
 * Hi [@longnguyen](https://wordpress.org/support/users/longnguyen/) : thank you
   very much for your help – it did exactly what I wanted.

Viewing 10 replies - 1 through 10 (of 10 total)