Title: Dani's Replies | WordPress.org

---

# Dani

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Editing Shop page WooCommerce](https://wordpress.org/support/topic/editing-shop-page-woocommerce/)
 *  Thread Starter [Dani](https://wordpress.org/support/users/danimzyec/)
 * (@danimzyec)
 * [2 years, 5 months ago](https://wordpress.org/support/topic/editing-shop-page-woocommerce/#post-17255344)
 * Done! 😀
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Create a new page using functions.php, page-mypage or plugin](https://wordpress.org/support/topic/create-a-new-page-using-functions-php-page-mypage-or-plugin/)
 *  Thread Starter [Dani](https://wordpress.org/support/users/danimzyec/)
 * (@danimzyec)
 * [2 years, 5 months ago](https://wordpress.org/support/topic/create-a-new-page-using-functions-php-page-mypage-or-plugin/#post-17253706)
 * Really appreciate your help. Thanks you!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Editing Shop page WooCommerce](https://wordpress.org/support/topic/editing-shop-page-woocommerce/)
 *  Thread Starter [Dani](https://wordpress.org/support/users/danimzyec/)
 * (@danimzyec)
 * [2 years, 5 months ago](https://wordpress.org/support/topic/editing-shop-page-woocommerce/#post-17253701)
 * Perfect, thanks you!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Editing Shop page WooCommerce](https://wordpress.org/support/topic/editing-shop-page-woocommerce/)
 *  Thread Starter [Dani](https://wordpress.org/support/users/danimzyec/)
 * (@danimzyec)
 * [2 years, 5 months ago](https://wordpress.org/support/topic/editing-shop-page-woocommerce/#post-17237137)
 * Thanks you so much for your answer!
 * I don’t want to use any plugin, because I’m going to do many other changes.
 * Now, after some researches, I understood that I need to copy the template and
   modify it. I need to add a table, new ways to define the different prices and
   so on.
 * Could you please, tell me how I can know when I need to update my new page with
   the changes you could have done in a new version? I mean, after I copy and modify
   the template, you release a new version. How can I know that you did a modification
   on the template and I need to add in my new page?
 * Thanks!!
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Create a new page using functions.php, page-mypage or plugin](https://wordpress.org/support/topic/create-a-new-page-using-functions-php-page-mypage-or-plugin/)
 *  Thread Starter [Dani](https://wordpress.org/support/users/danimzyec/)
 * (@danimzyec)
 * [2 years, 5 months ago](https://wordpress.org/support/topic/create-a-new-page-using-functions-php-page-mypage-or-plugin/#post-17229991)
 * One question related to this: “You should conditionally call these functions 
   only when “my-page” has been requested. You can get the requested object’s ID
   with wp_get_queried_object_id() to compare against the ID of “my-page”.”
 * If I don’t do that, does it mean that even if I have specific js and css files,
   they are going to be loaded on every page? How can load only on this specific
   page?
 * Thanks you so much!
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Create a new page using functions.php, page-mypage or plugin](https://wordpress.org/support/topic/create-a-new-page-using-functions-php-page-mypage-or-plugin/)
 *  Thread Starter [Dani](https://wordpress.org/support/users/danimzyec/)
 * (@danimzyec)
 * [2 years, 5 months ago](https://wordpress.org/support/topic/create-a-new-page-using-functions-php-page-mypage-or-plugin/#post-17229915)
 * First of all, thanks you so much!
 * I’m using a child theme and I have these specific files, because of the code 
   I have there, I’m not going to use it on any other page. I’m trying to be efficient.
 * The way I’m doing it is:
 * In my page-calendar.php:
 *     ```wp-block-code
       function enqueue_calendar_styles() {
       $theme_directory_uri = get_stylesheet_directory_uri();
       wp_register_style('calendar-style', $theme_directory_uri . '/assets_page-calendar/css/page-calendar.css');
       wp_enqueue_style('calendar-style');
   
       // Registra y encola el archivo JavaScript
       wp_register_script('calendar-script', $theme_directory_uri . '/assets_page-calendar/js/page-calendar.js', array('jquery'), null, true);
       wp_enqueue_script('calendar-script');
   
       }
       add_action('wp_enqueue_scripts', 'enqueue_calendar_styles');
       ```
   

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