JoeSHmow123
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Fastest Cache] Unable to Upgrade to PremiumOk. Before I do that, can you let me know if, with the Premium version I would be able to show Desktop cached and Mobile cached as made by WPTOuch Pro?
Thanks
Forum: Plugins
In reply to: [WP show more] Keep text after [/show_more] on the same lineI was finally able to do what you are talking about.
Step 1: Create a class in your theme’s style.css called whatever, I used “inlineshow”, and set the display to inline:
CSS
.inlineshow {
display:inline;}Step 2: For each section of your text you are going to use the show_more code in, wrap the text that precedes the hidden text with <p class=”inlineshow”> ……..</p>
<p class=”inlineshow”><span style=”color: #0b3350;”>This the content that will be shown </p>[show_more more=”show more” less=”show less” color=”#0066CC” list=”?”] This is the content that will initially be hidden [/show_more]
Step 3: Find the CSS for the plugin at plugins/wp-show-more/wpsm-style.css
Replace the CSS with this:
.wpsm-show a, .wpsm-show:active, .wpsm-show:visited {
cursor: pointer;
text-decoration: none;
}
.wpsm-show:hover {
cursor: pointer;
text-decoration: underline;
}
.wpsm-hide a, .wpsm-hide:active, .wpsm-hide:visited {
cursor: pointer;
text-decoration: none;
}
.wpsm-hide:hover {
cursor: pointer;
text-decoration: underline;
}
.wpsm-content-hide {
display: none !important;
}.show_more {
display:inline !important;}.wpsm-content {
display:inline;
/* If you want to style the text that appears after clicking on the Show More link, you can do it here */
color: #555;
font-size: 16px;
font-weight: 400;
line-height: 1.66em;
margin-bottom: 20px;
font-family: ‘Open Sans’;}I hope I have not forgotten anything. Let me know. It works perfectly for me.
- This reply was modified 8 years, 4 months ago by JoeSHmow123.
Forum: Reviews
In reply to: [Autoptimize] Increase Google Page Score but Increases actual load timeAppreciate the feedback. Thanks!
Forum: Reviews
In reply to: [Autoptimize] Increase Google Page Score but Increases actual load timeOk that makes sense. Ill try the cache combo. Although, it doesn’t make sense that Google recommends to do these things to speed up the site, but it slows down the site.
Forum: Reviews
In reply to: [Autoptimize] Increase Google Page Score but Increases actual load timeForum: Reviews
In reply to: [Telephone Number Linker] Worked Great on WP 4.1I don’t see any phone number in the sidebar of the taxlaws site. Simply add in some text (the phone number), and encase it with as shown above. Your css formatting for the number will not change, and the number will only clickable on mobile devices.
Forum: Reviews
In reply to: [Telephone Number Linker] Worked Great on WP 4.1on https://www.us-taxlaws.com, your banner does not use text – it uses a graphic
Forum: Reviews
In reply to: [Telephone Number Linker] Worked Great on WP 4.1install the plugin. you then have to find the code, or content, where each phone number is. then, simply encase each number like this [telnumlink] xxx-xxx-xxxx [/telnumlink]