Mike
Forum Replies Created
-
Forum: Plugins
In reply to: [Download Monitor] Tags – ?!?Do they serve any purpose without the Page Addon? I don’t have a need for a Downloads Page.
Forum: Plugins
In reply to: [Olimometer] PayPal Integration IssueYep, exactly what I was attempting to refer to. If you’re just pulling the current total in the account, the number will always be off. This means the number reported by Olimometer will always to negatively skewed.
Forum: Plugins
In reply to: [Link Library] Links to Category PagesThanks Yannick, I hadn’t thought of it in that way although it makes perfect sense. Appreciate the idea.
Forum: Plugins
In reply to: [Link Library] Links to Category PagesIt’s a hack but, I replaced the page with the following to get the result I was looking for.
<div class="LinkLibraryCat"> <h2><a href="/links/clubs">Clubs</a></h2> <hr /> <h2><a href="/links/info">Informational</a></h2> <hr /> <h2><a href="/links/organizations">Organizations</a></h2> <hr /> <h2><a href="/links/regulatory">Regulatory</a></h2> <hr /> </div>
I also customized the CSS a bit. It would be nice if the Plug-In had a shortcode for this.
Forum: Plugins
In reply to: [If Menu - Visibility control for Menus] Will it work with cache plugins?Marcelo,
Started using WP and If Menu a few weeks ago. I also have W3 Total Cache installed on my test site and haven’t had any issues thus far.
Forum: Plugins
In reply to: [Link Library] Link Name, & Link Description formattingblupace – I use Chrome’s “Inspect” feature to deal with issues like this. You can use it both to see what the HTML for the page actually looks like and make runtime changes to see what their effect would be.
I’d try changing the CSS for class “LinkLibraryCat” and muck with the margin or padding for that class. Also, if you do a little research you should be able to figure out how to only certain instances of that class (i.e. so you can style the second, third, etc. instances but, not the first one).
Forum: Plugins
In reply to: [Link Library] Link Name, & Link Description formattingblupace,
Think I get it now. Look up the SPAN tag. Something like
<SPAN CLASS="myclass">Link or Description HTML</SPAN>
. Might give you what you want.Upgraded to WordPress 4.4 and installed the updated If Menu plugin. Did a quick test and so far so good.
Does your database user have the ability to create tables?
You could try running this SQL statement manually:
CREATE TABLE
wp_links_extrainfo` (
link_id
bigint(20) NOT NULL DEFAULT ‘0’,
link_second_url
varchar(255) DEFAULT NULL,
link_telephone
varchar(128) DEFAULT NULL,
link_email
varchar(128) DEFAULT NULL,
link_visits
bigint(20) DEFAULT ‘0’,
link_reciprocal
varchar(255) DEFAULT NULL,
link_submitter
varchar(255) DEFAULT NULL,
link_submitter_name
varchar(128) DEFAULT NULL,
link_submitter_email
varchar(128) DEFAULT NULL,
link_textfield
text,
link_no_follow
varchar(1) DEFAULT NULL,
link_featured
varchar(1) DEFAULT NULL,
link_manual_updated
varchar(1) DEFAULT NULL,
UNIQUE KEYlink_id
(link_id
)
)`Forum: Plugins
In reply to: [Link Library] Link Name, & Link Description formattingblupace, I might be able to help if you and send me a link to the site you are trying to change.
Andrei,
If you would like someone to test the fix, I have a test environment and could get back to you in a day or two. Also, let us know if you need debug info.
Forum: Plugins
In reply to: [Link Library] Link Name, & Link Description formattingPlease supply a link to the page you are trying to change? You might want to override your sites CSS. Does your theme support that?
Forum: Plugins
In reply to: [Link Library] No links foundThanks, I fixed my permission issue (user couldn’t create tables) and wala Link Library is operation.
Forum: Plugins
In reply to: [Link Library] No links founddeactivated and re-activated the plugin with debugging enabled. I have a MySQL permission issue I need to resolve. Thanks for your help.
The required tables weren’t created.
Forum: Plugins
In reply to: [Link Library] No links foundHmmm…
WordPress database error Table ‘wordpress.wp_links_extrainfo’ doesn’t exist
Where can I find the SQL to fix this?