Jay
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Convert all link from http to httpsGreat plugin. One Question.
Since there are many different URL’s within the posts, what would I put in the url boxes of the plugin?
Would it just be..
Old: https://
New: https://And would that change the below URL’s
https://www.youtube.com
https://www.google.comForum: Hacks
In reply to: Not found or invalid function errorThe improved_trim_exerpt() function was not properly wrote. All is fixed… i think so lol
Thank you for your help
Forum: Fixing WordPress
In reply to: Hide certain foldersI was thinking that, but that will disable any portfolio items from being used on the website. My intention is 1) to just hide the folder /portfolio and any recursive files 2) not have any items in that folder to be able to be searched.
Thank you for your response ??
Forum: Hacks
In reply to: Not found or invalid function errorI have been looking around in my plugin’s, but i do not see anything that is causing an issue. I will be testing a couple things in the next couple days and let you know.
Forum: Hacks
In reply to: Not found or invalid function errorimproved_trim_excerpt() is in the formatting.php of wp-includes/formatting.php
I found one article relating to this issue. https://aaronrussell.co.uk/legacy/improving-wordpress-the_excerpt/
Also the theme is free if you select “download” under the image in the article or use this link https://www.magpress.com/download/movite.zip
Forum: Hacks
In reply to: Not found or invalid function errorI am using the theme movite.
https://www.magpress.com/wordpress-themes/movite.html
I am not sure If i can stop/change the error message when switching themes. Since the site is active so i have not tried.
Forum: Plugins
In reply to: [CKEditor for WordPress] BrokenThank you Wiktor!! Problem fixed.
I figured it out…
body{
counter-reset: tptn-list;
}.tptn_link:before {
color: #FFFFFF;
content: counter(tptn-list, decimal) “. “;
counter-increment: tptn-list;
font-size: 12px;
font-weight: normal;
margin-left: -18px;
position: absolute;
text-align: center;
}Forum: Plugins
In reply to: [Disqus Comment System] Leverage browser cachinganyone.. ?
I am using the following code…
.tptn-list{
list-style: none;
counter-reset: tptn-list;
}.tptn_link :before {
clear: both;
color: #FFFFFF;
content: counter(tptn-list, decimal);
counter-increment: tptn-list;
float: left;
font-size: 12px;
font-weight: normal;
margin-left: -18px;
position: absolute;
text-align: center;
}It works, but it does NOT increment. It is stuck at 1.
Any ideas?