Forum Replies Created
-
AuthorPosts
-
Aakash
KeymasterHi Bryan,
Thanks for using Shortcoder. Currently this feature is not supported yet. This feature may come in future version but I don’t have a plan yet.
For now can you please follow the below link to create your own shortcode ?
Aakash
KeymasterHi, I’m sorry to say that I’ve decided not to implement this feature to save sort in current UI because I’m planning to completely change the UI of shortcoder in couple of months. The new UI will have the option. The current UI won’t get an option to save sort order. If in case, I find time to implement it. I’ll let you know.
For now you can use the search box to search your shortcode.
Aakash
KeymasterReally strange.
I need to look at you website directly.
Can you please share a dummy administrator user final credential to me ?I’ll login and check the issue.
Thanks,
AakashAakash
KeymasterCan you please check if the below file is present in your server ?
wp-content\plugins\shortcoder\includes\metadata.php
Also, can you please delete and try reinstalling the plugin ?
Aakash
KeymasterI’ll implement a temp solution mean time in the next release.
Aakash
KeymasterHi,
I understand. I’m planning to make drastic changes to the UI in the future. That should fix issues like these.
Thanks,
AakashAakash
KeymasterYou have to use retrieve the custom field value like below
$cf_value = get_post_meta(get_the_ID(), 'pricemonth', TRUE);
and then use it on
do_shortcode
echo do_shortcode( $cf_value );
Thanks,
AakashAakash
KeymasterYou can simply use [sc name="my_shortcode"] as custom field value.
While displaying the custom field, you have to call
do_shortcode( <the_value_of_custom_field> );
Aakash
KeymasterHi @ajsendall, This can happen if the anchor tag is not closed properly. Please check if the tag is closed like below.
<a href="#">Some text</a>
In the page you shared I’m not able to locate the issue.
Please use the below tool to find out the issue.
Thanks,
AakashAakash
KeymasterCan you please share the page where the issue is seen ?
Aakash
KeymasterSorry for the delay.. Yeah sure Google+ will be soon removed from WP Socializer.
Thanks,
AakashAakash
KeymasterHi Saruni,
You can change
{s-url}
to{url}
in this specific file and linehttps://plugins.trac.wordpress.org/browser/wp-socializer/trunk/core/lists.php#L549
I’ll share a hook which you can paste in your themes file to make this change permanent for you in the support forum.
Thanks,
AakashAakash
KeymasterHi Karl,
Mobile numbers are 10 digits. In your example excluding “country code” mobile number is only 9 digits. Hence the issue.
I added a 0 to the URL and it is valid now.
Aakash
KeymasterHi Grace,
Sorry for the late reply.
Yes there is a function which you can use to display super rss reader at any desired location. But please note that you have to pass an array of options to function.
Note: below method is not official yet, but you may use it for now.
The function:
https://plugins.trac.wordpress.org/browser/super-rss-reader/tags/2.7/super-rss-reader.php#L57Accepted parameters for the function:
https://plugins.trac.wordpress.org/browser/super-rss-reader/tags/2.7/super-rss-reader.php#L34Example:
srr_rss_parser(array( 'urls' => 'http://myrssurl.com', 'count' => 10 ));
Aakash
KeymasterHi Javad,
Yes there is a function which you can use to display super rss reader at any desired location. But please note that you have to pass an array of options to function.
Note: below method is not official yet, but you may use it for now.
The function:
https://plugins.trac.wordpress.org/browser/super-rss-reader/tags/2.7/super-rss-reader.php#L57Accepted parameters for the function:
https://plugins.trac.wordpress.org/browser/super-rss-reader/tags/2.7/super-rss-reader.php#L34Example:
srr_rss_parser(array( 'urls' => 'http://myrssurl.com', 'count' => 10 ));
Thanks,
Aakash -
AuthorPosts