Blog

F7 List Item Navigation

User Framework 7 on click on list open new page with in place of modal Assistant To open a new **Framework7 page** (not a modal) **when clicking on a list item**, you can use the built-in `f7` router by defining `path` and `url` or `componentUrl` in your `routes` array, then using an “ tag with […]

Order Processing Clarification

User Actually current list of order will not affect, It will affect of admin want to process order and we can not idenfity orders if any customer do it from front end Correct above Assistant Here's the corrected version of your sentence for clarity and grammar: **"Actually, the current list of orders will not be […]

Shopping Feed Dashboard Alias

User Assistant To ensure your **Shopping Feed** menu appears **under `/dashboard/store`** (i.e., Community Store section), **without hiding the original menu** (`/dashboard/shopping_feed`), you simply need to **create an alias** under `/dashboard/store/feed`, while **preserving the original menu structure**. Your current code already does this correctly — **it creates an alias but does not remove or hide the […]

Tap and Pay Clarity

User I'm mentioning above before starting the Tap and pay development Because its better we both understand the complexity of task. Correct above sentence Assistant Here is the corrected version of your sentence: **"I'm mentioning this beforehand before starting the Tap and Pay development because it's better that we both understand the complexity of the […]

Logging in Concrete CMS

User Concrete cms Add logs from custom package ti default concrete cms logs we are using concrete cms 9 Assistant To add logs from your **custom package** to the default **Concrete CMS logs** in version 9, you can use Concrete’s built-in logging system, which integrates with the `DatabaseLogger`. Here’s how you can log messages from […]

Set Cron for XML Feed

User Now we have created feed package now I want to set cron to generate xml file and store in concrete cms Assistant To set up a **cron job** in **Concrete CMS 9** that generates and stores an XML file (e.g., a Google Merchant feed), you should follow these steps: — ## ✅ Step 1: […]

Concrete CMS Custom Pages

User also how to adapt default concrete cms pages like list page add/edit page in custom packages Assistant To adapt default **Concrete CMS pages** like **list, add, and edit** pages in your **custom package**, you can follow this approach. Concrete CMS provides a robust way to reuse its built-in CRUD and form handling patterns by […]

Remove Product Description GD

User Geodirectly plugin customize listing page remove product descrpton Assistant To **remove the product description** from the **listing page** when using the **GeoDirectory plugin** (likely with a custom post type like "Listings", "Places", etc.), follow these steps: — ### ✅ Option 1: Using a Code Snippet (Best practice) 1. **Find the template hook** used in […]

Update WooCommerce Order Content

User Update wp_posts post_content with meta_value of meta_key with match post_id and post type woocommerce order Assistant To update the `post_content` of WooCommerce orders in the `wp_posts` table using the `meta_value` from `wp_postmeta`, you can run the following SQL query: UPDATE wp_posts p JOIN wp_postmeta pm ON pm.post_id = p.ID SET p.post_content = pm.meta_value WHERE […]

Sentence Correction Update

User It bit complicated so I'm working on it and I'll able to any update on it by tuesday in next week correct above Assistant Here is the corrected version of your sentence: **"It's a bit complicated, so I'm working on it and will be able to provide an update by Tuesday next week."** Let […]