doublehead73
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Hide category title from posts using CSSThis is being over-complicated.
If you want all categories to not display a page title just add this to your custom CSS:.category .page-title{ display: none; }[Moderator note: code fixed. Please wrap code in the backtick character or use the code button.]
Boom. All done.
Forum: Plugins
In reply to: [Real-Time Find and Replace] WildcardsSolved!
1: /Leg Opening: \d[“-”]/
2: $0 <br>Pictured on a 5’10” model
Forum: Plugins
In reply to: [Real-Time Find and Replace] WildcardsI actually got that far, it just doesn’t recognize the call to pass (instead of replace) the searched text as it should. Perhaps there is another way to call it in. I did read about using /1 or something to call in the search results from the brackets.. but this was got the whole phrase in textedit.
Maybe Ill get a regex expert for an hour to coach me on it.
Cheers!
-ShaunForum: Plugins
In reply to: [Real-Time Find and Replace] WildcardsTotally helped. The find appears to get the range. But for some reason the replace query does not function at all.
This functions fine on textpad without the slashes. I really appreciate the help, doing my best to read and learn more about regedit. Time to take a class maybe.find:
/Leg Opening: [0-9][0-9]./
Replace:
/$& br>Pictured on a 5’10” model/or I also tried (for replace)
$& br>Pictured on a 5’10” modelResult is:
/$& br>Pictured on a 5’10” model/#8243;- This reply was modified 9 years, 1 month ago by doublehead73.
- This reply was modified 9 years, 1 month ago by doublehead73.
- This reply was modified 9 years, 1 month ago by doublehead73.
Forum: Plugins
In reply to: [Real-Time Find and Replace] WildcardsHmm strangely, anything I type give a blank page if regex is checked. Strange.
Forum: Plugins
In reply to: [Real-Time Find and Replace] WildcardsRight! Actually right after I wrote this a programmer friend came over and gave me a lesson regex. We got this working perfectly on textpad with Regex enabled for replace.. but when i add the exact same code to the site, it makes all pages go blank:
Search: Leg Opening: [0-9][0-9].
Replace: $& <br>Pictured on a 5’10” modelAny idea what I might be doing wrong, when it works in textpad?
Thanks!