febinky
Forum Replies Created
-
Forum: Plugins
In reply to: [Smart Slider 3] Assistance Needed with Retrieving Images Based on Slider IDThank you for your assistance. In the
wp_nextend2_section_storage
table, I used the following query:SELECT * FROM
wp_nextend2_section_storage
WHERE section LIKE ‘%-304%’This query retrieves the
image->images
array under theassets
object in the column’s value, whereapplication
is set tocache
. These images are the ones we’re expecting.However, I’ve noticed that when we publish or unpublish through the backend site of the wordpress application, these cached images do not reflect the changes unless we reload the WordPress application site successfully.
Could you please advise on how to ensure the cache updates properly without needing to reload the site?
Forum: Plugins
In reply to: [Smart Slider 3] Assistance Needed with Retrieving Images Based on Slider IDHi Team,
While examining the slider parameters, I came across the following data structure:
{
"ordering": 0,
"static-slide": 0,
"backgroundColor": "ffffff00",
"backgroundImage": "{image}",
"backgroundImageOpacity": 100,
"backgroundAlt": "",
"backgroundTitle": "",
"backgroundMode": "default",
"backgroundVideoMp4": "",
"backgroundVideoOpacity": 100,
"backgroundVideoMuted": 1,
"backgroundVideoLoop": 1,
"backgroundVideoMode": "fill",
"link": "|*|_self",
"slide-duration": 0,
"background-type": "image",
"record-slides": "200",
"version": "3.3.27"
}<span style=”font-size: inherit; text-wrap: var(–wp–custom–body–typography–text-wrap);”>This seems to represent various properties related to a slide, such as the background image, colors, video settings, and more. Specifically, the </span><code style=”text-wrap: var(–wp–custom–body–typography–text-wrap);”>”backgroundImage”: “{image}”<span style=”font-size: inherit; text-wrap: var(–wp–custom–body–typography–text-wrap);”> parameter indicates the background image, which is likely a placeholder that will be replaced with the actual image reference.</span>
I can see that in the
wp_posts
table (withpost_type = 'attachment'
), there are multiple image GUIDs (12 in total) associated with a post. However, I’m unclear on where to retrieve all the images related to each slider, as I’m looking for not just background images, but additional images related to the post.Could you please clarify:
- Where the remaining images are stored: Beyond the background image, where can I find other images used in the slider (such as in the
wp_posts
table or elsewhere)? - How to correctly link the images from the slider parameters: For example, how do I map the image placeholders in the slider configuration to the actual published images in WordPress?
I appreciate your guidance in clarifying how to retrieve all the images associated with a post and its sliders.
- Where the remaining images are stored: Beyond the background image, where can I find other images used in the slider (such as in the