Activity Feed

  • In Elementor, each form submission is assigned a unique ID that increments with every new submission. I would like to reference this ID in the post-submission action, such as in an email sent to the user, to provide them with a unique identifier for their request. Is there a way to include this ID as a shortcode in the email sent to users,…

    Read more

  • wordpress_migrate module for importing WordPress sites into Drupal alpha7 release


  • Profile photo of Davis

    Davis posted an update a day ago

    a day ago

    WP Featherlight (lightbox) broken with 6.7 Core

    Hi folks!

    I noticed today after upgrading from 6.6.2 to 6.7 that I could no longer specify “link to media” within the gallery creation screen for new or existing posts. Existing galleries in previous posts worked as before but there appears to be no way to create new galleries with the…

    Read more

  • Profile photo of axa@s

    axa@s posted an update 2 days ago

    2 days ago

    Why does clicking “Add to Wishlist” also trigger the “Add to Cart” action?

    Does anyone know what might be causing this issue?
    “Wishlist for WooCommerce” by WP-Factory

  • Profile photo of Reed

    Reed posted an update 2 days ago

    2 days ago

    WordPress Theme Malicious Code Injection after Core Update

    Did anyone else notice malware being injected to your plugins folder after the most recent wp core update? The folder structure is [wp theme name]-wp-plugin/[wp theme name]-wp-plugin.php. This affected 2 of my sites and I’m trying to find the correlation between the sites that was…

    Read more

  • Profile photo of daivid

    daivid posted an update 3 days ago

    3 days ago

    If I were to have an HTML web page already, can I just past it into a WordPress page?

  • I tried loading jQuery in the file, but I encountered difficulties. Many tutorials mention that after loading jQuery, you can directly use it. However, most of them assume that the reader already has extensive WordPress experience, which makes it very frustrating for me.functions.php

    Here’s what I need to know:

    1. File paths and code… Read more

  • Oh my god, it seems like a WordPress

  • I wrote a jQuery script for my WordPress plugin, and it looks like this:


    $(function() { // jQuery code here });

    Even though I make sure that jQuery is loaded on the page, I keep getting the following error in the browser console:

    TypeError: $ is not a function

    I’ve read that WordPress uses jQuery in no-conflict mode. Should I rewrite my code…

    Read more

    • Make sure your script is enqueued correctly in WordPress, with jQuery declared as a dependency. Use the following PHP code:

      php
      Copy code
      function enqueue_my_script() {
      wp_enqueue_script(
      ‘my-custom-script’, // Handle name for your script
      plugin_dir_url(__FILE__) . ‘js/my-script.js’, // Path to your… Read more

      1
    • Load More