airdrummer
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Remove additional WP-members fieldsand another oddity: on my login pages, i display
[wpmem_logged_in]You are logged in as [wpmem_field user_login][/wpmem_logged_in]
[wpmem_profile register=hide]but when clicking on update password
https://asapackermansion.letartliveon.com/home/login/?a=pwdchange
wpmem_logged_in is not true…not a showstopper, but an annoyance
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Remove additional WP-members fieldsnope, not checking left-column boxes, just reg/req-\ and this is happening on 3 websites, 1 a recent fresh install…
there is another issue, not related to wpmem: all non-wpcore settings pages are titled “action workflow editor” on 2 of the 3 websites
thanx, looking fwd to the long-awaited v3.5-)
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Remove additional WP-members fieldsi have just now found that the fields save settings action fails: check/uncheck a field, select save settings, click apply, nothing happens-(page jumps to top, but no success banner as on other tabs) other ops (add/delete/move) work as expected
Forum: Plugins
In reply to: [WP-Members Membership Plugin] WP Member shortcodes not workingso do u have an example webpage?
turns out i was adding my css to “additional css”, which is the default WordPress functionality that only applies to the desktop theme, instead of wpt’s “custom css”. moving the css from additional to custom fixes the problem.
having a desktop functionality displayed in the wpt customizer, and having it affect wpt appearance in the customizer, are gotchas that should be fixed.
Forum: Plugins
In reply to: [Wordpress File Upload] Zip files not allowedso *.* does NOT allow ALL filetypes, as the wildcards would imply? i am having this issue trying to upload csv
Forum: Plugins
In reply to: [Wordpress File Upload] .ai vector file is unable to uploadi am also having an issue uploading .csv, even tho it’s in the list:
uploadpatterns=”.jpg,.png,.jpeg,.tif,.gif,.csv,.pdf,.zip,.txt,.rtf,.xls,.xlsx,.doc,.docx,.ppt,.pptx,.ods,.odt,.ots,.ott,.odp,.odg”
File 06-12-2023.csv not uploadedUpload failed!
File not allowed.Failed upload path: /home3/bostonj2/public_html/2021site/wp-content/uploads/2024/10/06-12-2023.csv
Error. This file was rejected because its MIME type is invalid. Its MIME type is: text/plainpls advise
isn’t that redundant, wouldn’t the site administrator know he’s activated the user? or are there more than 1 s.a.?
ah, only acf…i haven’t used that in a while…googling “acf shortcode not working wptouch” returns quite a few including this: https://support.wptouch.com/article/565-adding-support-for-the-advanced-custom-fields-plugin
it looks like you have to explicitly Include the custom field call where you want the custom field to appear in your page template, which wpt bypasses. so u would have to copy your theme’s templates into wpt’s: wp-content/plugins/wptouch/themes/bauhaus/default
good luck & have fun;-)
sorry, don’t know why that plugin’s sc aren’t working, but if you have access to your database in for example phpmyadmin:
SELECT * FROM
wp_options
WHEREoption_name
LIKE ‘wpts_wptouch_pro’mine contains:
s:26:”process_desktop_shortcodes”;
s:1:”0″;
s:17:”remove_shortcodes”;
s:0:””;and s.c.s are executed…interestingly, another website that works contains:
s:30:”enable_shortcode_compatibility”;b:0;
s:30:”shortcode_compatibility_method”;
s:17:”remove_shortcodes”;
s:17:”remove_shortcodes”;
s:0:””;the 1st time i looked, but now doesn’t contain those lines…wtf?
shortcodes can be defined either in the theme’s functions.php file, which of course will not be loaded by wpt, or in a plugin that you create & install:
<?php
/**
* @package cardinal glen hoa
* @version 1.20
Plugin Name: cardinal glen hoa
Description: Site specific code for cardinalglen.org
*/
function todays_date( $attrs, $content=null)
{
extract( shortcode_atts(
array('fmt' => get_option('date_format')),
$attrs ) );
$fmt = $attrs['fmt'];
return date($fmt);
}
add_shortcode('todays_date', 'todays_date');worx4me;-)
- This reply was modified 1 month, 3 weeks ago by airdrummer.
do you mean the “Registration is Moderated, User is Approved” email sent to the new user? or when the user initially logs in?
Forum: Plugins
In reply to: [WP-Members Membership Plugin] wpmem_logged_in by membership?sorry, i forgot the quotes..working as expected-)