Sam Rohn
Forum Replies Created
-
Forum: Plugins
In reply to: [PanoPress] panobox Shortcode as Menu Link ?you would need to code up a custom menu and use the wordpress do_shortcode function in the menu to do something like that, specifics would be dependent on your theme etc
https://codex.www.ads-software.com/Function_Reference/do_shortcode
sam
Forum: Plugins
In reply to: [PanoPress] Not loading correctlythis error is most likely caused by a conflict with another wordpress plugin or your wordpress theme
please follow the tips in the panopress troubleshooting FAQ to resolve this sort of thing, disable other plugins and use default theme, then reelable one by one until you find the culprit, please post on the panopress forum if you are still having issues
https://www.panopress.org/forums/topic/panopress-troubleshooting-faq-read-me/
sam
i just resolved a similar issue where i was using shortcode in paypal button href value
for me, changing double quotes to single quotes in href surrounding shortcode and it all works as before, so try changing some of your quotes from one to the other and see if that helps
change
href="[s2_shortcode output="url"]"
to
href='[s2_shortcode output="url"]'
note that my enclosed shortcode contains values in double quotes which i did not change
wp team is tracking this in core, so there may be an update to resolve this soon
https://core.trac.www.ads-software.com/ticket/33102
sam
looks good so far, thanks p?r ??
same thing here, after last update, spinner keeps spinning and does not load any info
clearing the log seems to work, new entries are shown, but soon as it hits about 35 (?) entries it goes blank again…
Forum: Plugins
In reply to: [PanoPress] Further developmentyes, panopress is still under active development, next version will emphasize support for HTML5 panoramas & VR and de-empashize flash, which is basically a legacy technology as far as 360° spherical VR panoramas are concerned
although this wp support area for panopress is not very active, our main forums see quite a bit more activity., please let us know about any desired features or feedback etc there
https://www.panopress.org/forums/
thanks ??
sam
as you said above, hacking of s2member plugin core files is not an ideal solution for several reasons ??
amr users also allows for more advanced filtering and sorting plus html customization etc vs s2Member-List shortcode
or you could probably just cook up a simple custom shortcode to display any user info as desired using get_users or WP_User_Query etc
sam
AMR users plugin will let you do what you want, display a custom list of all or any WP users and s2member fields including custom values, and export as csv
https://www.ads-software.com/plugins/amr-users/
and this add on will allow formatting s2member unix time stamps into human readable format
https://wpusersplugin.com/downloads/amr-users-plus-s2-member/
several other add ons are also available to add more functions and formatting options to the lists
sam
sam
yep, fixed for me
thanks ??
sam
i imagine the plugin author will fix this soon, probably just some small oversight in code
meanwhile, User Switching plugin will allow you to easily switch to another users logged in account, this will let you update avatar as that user if needed, and is otherwise useful for debugging wp sites with multiple user accounts
https://www.ads-software.com/plugins/user-switching/
sam
yes, the behavior i noted above occurs only since installing the latest 2.0.0 release on 2015-5-8, it did not happen with previous versions
sam
similar odd behavior here since updating to WP User Avatar 2.0
when viewing user profile as admin, i see my own gravatar in that users profile avatar area
when viewing profile as user, proper avatar for that user is displayed
sam
you can convert s2member EOT to a more readble date format w php in a template like this
<?php if(($s2member_auto_eot_time = get_user_field('s2member_auto_eot_time'))) { // See <https://php.net/manual/en/function.date.php> for formatting options. echo 'Your membership expires on: '.esc_html(date('F j, Y', $s2member_auto_eot_time)); } ?>
see here for more info
sam
see the documentation here for info on s2member [s2Get /] shortcode
https://s2member.com/kb-article/s2get-shortcode-documentation/
it should be something like this[s2Get user_field="s2member_custom" /] # Custom String value for the current User.
sam
Forum: Plugins
In reply to: [PanoPress] opt in/ registration before virtual tourwordpress itself has built in password protection for pages and posts
https://codex.www.ads-software.com/Using_Password_Protection
i would recommend just creating a password protected post or page in WP as above, and then embedding your tour in that protected page
sam