itskev
Forum Replies Created
-
Forum: Plugins
In reply to: [Theme My Login] Remove User Panel LinksThe file is located:
wp-content/plugins/theme-my-login/theme-my-login-custom.phpForum: Plugins
In reply to: [Theme My Login] Remove Lost Password linkWell, after playing with this for hours, I posted this post. But I was able to remove it by just doing this:
[theme-my-login show_links=”0″].Apparently, the action shortcode wasn’t working with it.
I would love the ability to set the column at 50% on a two-column table instead of pixels because I am getting different results from one two-column table to another one just below it. It looks fine on mobile after I forced hard returns on text, but desktop on Safari the first columns on both tables are mis-aligned. I set the tables at 800px width and set on auto responsive.
Forum: Plugins
In reply to: [Theme My Login] Remove User Panel LinksThanks Jeff. I did that, but it didn’t change anything when I took out part of it. I ended up taking it out of the two php files that governed it. I would rather use that custom php file but as of right now, it doesn’t work.
Forum: Plugins
In reply to: [Theme My Login] Show Password Iconwell, I used hideShowPassword plugin and it works. It’s an older plugin, but it works. This should be a feature in Them My Login.
BTW… I love this plugin.
Forum: Plugins
In reply to: [Theme My Login] Remove User Panel LinksThanks Jeff. I saw that. I’m not sure how that helps me. Instructions say “In order to change the links that display here, consider the following code:”
So I consider it. That’s it? It would be greatly helpful for the page to tell me more than just to consider it.
I tried copying that code into a custom php file and removing some of it. Is that considering it? I don’t want to change the code of the two php file and have them written over from an update. This is the content in the custom php file. I removed the profile code from the all other roles.
<?php function filter_tml_widget_user_links( $links ) { $user = wp_get_current_user(); $role = reset( $user->roles ); if ( empty( $role ) ) { $role = 'subscriber'; } if ( is_super_admin() ) { $role = 'administrator'; } // These links are for authors, editors and admins if ( in_array( $role, array( 'author', 'editor', 'administrator' ) ) ) { $links = array( 'profile' => array( 'title' => __( 'Profile' ), 'url' => admin_url( 'profile.php' ), ), 'logout' => array( 'title' => __( 'Log Out' ), 'url' => wp_logout_url(), ), ); // These are for all other roles } else { $links = array( 'logout' => array( 'title' => __( 'Log Out' ), 'url' => wp_logout_url(), ), ); } return $links; } add_filter( 'tml_widget_user_links', 'filter_tml_widget_user_links' );@billerickson
That code is great! How could I remove the hyphen that comes after the date?Bill,
Let’s say I want to change the bullet to “>”. How would I go about doing that?Thanks Bill! Worked like a charm.
Fixed it.
I placed this snippet in the short list on home page:[events_list limit="2"]#_EVENTLINK #_EVENTIMAGE #_EVENTDATES: #_EVENTTIMES<br>[/events_list]then I pasted it to replace the code in “Default event list format” in the events settings admin.
#_EVENTLINK<br>#_EVENTIMAGE<br>#_EVENTDATES: #_EVENTTIMES<br>@draganeee – Were you able to find a solution? If so, please share.
I have the same issue. Chrome and Safari work great, but then the image thumbnails in Firefox show full size. I can’t find any solution in X Theme forum or Events Manager forum.
Forum: Fixing WordPress
In reply to: Visitors can't post commentsI don’t go around leaving comments all the time and I am getting this same error message when posting a comment on someone’s blog and I have never posted a comment on it before. It would be nice to know what the issue is.
Forum: Plugins
In reply to: [WooCommerce] Add to Cart gone?OK.. So I can see this error… But I am not a JS expert by far… How would this be fixed?
Timestamp: 1/31/13 12:51:51 PM
Error: SyntaxError: missing ) after argument list
Source File: http://www.brendascheesecakes.com/wp-content/themes/builder/js/jquery.easing.1.3.js?ver=1.3
Line: 41, Column: 28
Source Code:
jQuery.extend( jQuery.easing;Forum: Plugins
In reply to: [WooCommerce] Add to Cart gone?If I “simply” switch themes… won’t I lose some settings switching back?