titchpitch
Forum Replies Created
-
Forum: Plugins
In reply to: [Groups] Conflict with Elementorif i roll back to 2.7.0 the error goes away
Forum: Plugins
In reply to: [Groups] Conflict with ElementorI am also suddenly getting this error. when i deactivate groups i can insert again
can this get fixed please
still an issue with v3.0.1
^ i am facing the same issue. cannot preview homepage drafts
Look at justified image grid – uses nextgen tags as a source and can have two level filtering
Manage galleries > use search box > these results will not update.
Only if i go manage galleries > select the existing gallery > these will update.
Thought id leave an update on what I ended up doing.
I decided to turn the description box into an array in a custom template determining the split using a commar.
$pricearray = explode(',', $image->description);and then used a switch statement to display the right part of the array:
switch ($userCountry) { case "UK": $desc = '£' . $pricearray[0]; break; case "Singapore": $desc = 'S$' . $pricearray[1]; break; case "US": $desc = 'US$' . $pricearray[2]; break; default; $desc = 'Unavailable';finally adding this into title tag:
<?php esc_attr($desc) ?>Maybe this will help someone in the future as possible way to go. Could also use this method of creating an array to make a kind of additional field.
- This reply was modified 8 years, 3 months ago by titchpitch.
- This reply was modified 8 years, 3 months ago by titchpitch.
- This reply was modified 8 years, 3 months ago by titchpitch.
Hi Cais
Thanks for replying.
I cant figure out how to parse or render the variable. (even if i put in a shortcode to test instead of a $variable it still prints the string)
Any ideas how I can either get the variable (aka description) parsed, or to natively allow shortcodes to be rendered within the description itself?
Thanks 🙂