ddlange
Forum Replies Created
-
Forum: Plugins
In reply to: [Login With Ajax - Fast Logins, 2FA, Redirects] text colorhttps://bcgpub.com/SNAG-0026.png shows the result of clicking the white text.
https://bcgpub.com/SNAG-0027.png shows the text box I’m trying to modify.
Forum: Plugins
In reply to: [Login With Ajax - Fast Logins, 2FA, Redirects] text colorThanks. I’ve uploaded a screenshot of the results to https://bcgpub.com/SNAG-0025.png. I’m not sure I interpreted the results correctly. I changed
.lwa td { padding-top:7px; vertical-align:top; background-color:none; }
to
.lwa td { padding-top:7px; vertical-align:top; background-color:66999; }
I was trying to change the color of the text box to a medium color that could display both light and dark text. That had no effect. Should I have changed something else?
Forum: Plugins
In reply to: [Login With Ajax - Fast Logins, 2FA, Redirects] text colorThe source of the problem seems to be the Cloratio theme colors. I’ve partly solved that problem by changing the color of the footer so that both black and white text can be seen. I also changed the style to divs-only. I haven’t solved the problem of the barely visible text on a light gray background once a user is logged in. Would it help if you registered for the site so you could see the light gray login box?
Forum: Plugins
In reply to: [Login With Ajax - Fast Logins, 2FA, Redirects] text colorFilezilla problem now solved and I can see all files.
Forum: Plugins
In reply to: [Login With Ajax - Fast Logins, 2FA, Redirects] text colorSorry for the delay – I had to get the new Bluehost login info from my client to be able to see the plugin. For some reason, Filezilla shows every plugin but Login with Ajax.
Style.css under the Cloratio theme ends with the following statements:
/* Login With Ajax */
.lwa-links-remember .lwa-links-register {
color: #6a6565 !important;
}
————————Where now? Should I proceed with copying widget.css to Cloratio/plugins and adding the statements there? (I would have to create the plugins folder under Cloratio.) If not, any other ideas?
Forum: Plugins
In reply to: [Login With Ajax - Fast Logins, 2FA, Redirects] text colorThanks, that looked to me like it would work, but when I added the code as the last statement in style.css, it had no effect. Then I thought of copying widget.css to cloratio/plugins/login-with-ajax and adding the statement to widget.css there, but I couldn’t even find login-with-ajax under wp-content/plugins/. That has me totally stymied, because the login app clearly works, so it is obviously somewhere.
Forum: Plugins
In reply to: [Login With Ajax - Fast Logins, 2FA, Redirects] text colorThanks, I too had wondered if my theme (Cloratio) was over-riding something. The site is https://agnostopedia.org/.
Forum: Fixing WordPress
In reply to: conditional code in functions.phpBrilliant! Thank you ever so much. And I’ve learned a bit about conditional statements in PHP.
I had to go onto the hosting site to edit out my error there. Whew!
Thanks again. It looks great!
Forum: Fixing WordPress
In reply to: conditional code in functions.phpThanks, I will as soon as WP comes back with my site. All I did was click Update after I made editing changes and WP vanished!
Forum: Fixing WordPress
In reply to: conditional code in functions.phpSomething is not working right! Here’s the code I entered:
function comment_reform ($arg) { $pageid = get_the_ID(); if ($pageid == 8) $arg['title_reply'] = __('Please submit your comment:'); return $arg; if ($pageid == 9) $arg['title_reply'] = __('Please submit your question:'); return $arg; if ($pageid == 255) $arg['title_reply'] = __('Please submit your contribution:'); return $arg; } add_filter('comment_form_defaults','comment_reform');
I see the correct text for page 8 but “Leave a reply” for 9 and 255. I got the page IDs from the shortlinks. Did I leave out a comma? a curly bracket? Something else?
Thanks!
Forum: Fixing WordPress
In reply to: conditional code in functions.phpThanks! It’s pages only, 3 of them, and they have the IDs
sitename/?p=255,
sitename/?p=8,
sitename/?p=9.So would the code be something like:
function comment_reform ($arg) {
$pageid = get_the_ID();
if ($pageid == 255)
$arg[‘title_reply’] = __(‘Please submit your question:’);
return $arg;
if ($pageid == 9)
$arg[‘title_reply’] = __(‘Please submit your comment:’);
return $arg;
}