It is currently March 29th, 2024, 8:52 am



Post new topic Reply to topic  [ 283 posts ]  Go to page Previous  1 ... 14, 15, 16, 17, 18, 19  Next
Author Message
 Post subject: Re: Replacements help topic.
PostPosted: May 25th, 2021, 5:18 pm 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12630
Location: Earth
Search for:
Code:
^(.+)[\w\W]{10}$


Replace with:
Code:
$1


Enable regex search.

_________________
themaPoster | themaCreator | themaManager | themaLeecher | themaRegister


Top
 Profile  
Reply with quote  
 Post subject: Re: Replacements help topic.
PostPosted: May 25th, 2021, 10:20 pm 

Joined: December 2nd, 2013, 9:36 pm
Posts: 55
thanks but lets say my title has a html tag. i want to implement this not only on subject leech but body message also

Before

Code:
<h2>My Title 100example</h2>
<h2>Other Title 200example</h2>


After

Code:
<h2>My Title</h2>
<h3>Other Title</h2>


many thanks -.)


Top
 Profile  
Reply with quote  
 Post subject: Re: Replacements help topic.
PostPosted: May 26th, 2021, 10:21 am 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12630
Location: Earth
Search for:
Code:
(<h2>.+)[\w\W]{10}(</h2>)


Replace with:
Code:
$1$2


Enable regex search.

Not sure if you made a mistake with HTML tags since themaLeecher leeches in BBCode. With BBCode it would be:

Search for:
Code:
(\[h2\].+)[\w\W]{10}(\[/h2\])


Replace with:
Code:
$1$2


Enable regex search.

_________________
themaPoster | themaCreator | themaManager | themaLeecher | themaRegister


Top
 Profile  
Reply with quote  
 Post subject: Re: Replacements help topic.
PostPosted: May 26th, 2021, 4:30 pm 

Joined: December 2nd, 2013, 9:36 pm
Posts: 55
booth ways are useful for me. thank you . once again


Top
 Profile  
Reply with quote  
 Post subject: Re: Replacements help topic.
PostPosted: July 5th, 2021, 2:31 pm 

Joined: January 13th, 2014, 7:59 pm
Posts: 141
Hi Freddy
I need a change in TL to add the title of the post to TP

Before:
Quote:
<center><p><span style="font-family: cursive; font-size: 18px; font-style: normal; font-weight: normal; text-decoration: none; text-transform: none; color: #999900;">30 Rock S01 480p WEB-DL nSD x264-NhaNc3</span></p><span style="color: #ff0000;">


Quote:
<center><p><span style="font-family: cursive; font-size: 18px; font-style: normal; font-weight: normal; text-decoration: none; text-transform: none; color: #999900;">Chicago Fire S01 480p WEB DL nSD x264-NhaNc3</span></p><span style="color: #ff0000;">


After:
Quote:
<subject>30 Rock S01 480p WEB-DL nSD x264-NhaNc3</subject>
<center><p><span style="font-family: cursive; font-size: 18px; font-style: normal; font-weight: normal; text-decoration: none; text-transform: none; color: #999900;">30 Rock S01 480p WEB-DL nSD x264-NhaNc3</span></p><span style="color: #ff0000;">


Quote:
<subject>Chicago Fire S01 480p WEB DL nSD x264-NhaNc3</subject>
<center><p><span style="font-family: cursive; font-size: 18px; font-style: normal; font-weight: normal; text-decoration: none; text-transform: none; color: #999900;">Chicago Fire S01 480p WEB DL nSD x264-NhaNc3</span></p><span style="color: #ff0000;">


Thanks


Top
 Profile  
Reply with quote  
 Post subject: Re: Replacements help topic.
PostPosted: July 6th, 2021, 4:45 am 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12630
Location: Earth
themaLeecher leeches in BBCode. You definitely don't have original messages in HTML.

I would need original message examples to write the replacements (since the replacement is applied after leeching [which is still BBCode]).

_________________
themaPoster | themaCreator | themaManager | themaLeecher | themaRegister


Top
 Profile  
Reply with quote  
 Post subject: Re: Replacements help topic.
PostPosted: December 28th, 2021, 10:47 pm 

Joined: February 18th, 2012, 7:42 pm
Posts: 25
Hi Freddy

I use themaLeecher

When leech messages, I want to replace the "message name"

Each message has its name!

How should I do it?

Image


Top
 Profile  
Reply with quote  
 Post subject: Re: Replacements help topic.
PostPosted: December 29th, 2021, 8:59 am 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12630
Location: Earth
If you want to insert subject inside message text then this tag:
Code:
<postSubject>

_________________
themaPoster | themaCreator | themaManager | themaLeecher | themaRegister


Top
 Profile  
Reply with quote  
 Post subject: Re: Replacements help topic.
PostPosted: December 29th, 2021, 11:46 am 

Joined: February 18th, 2012, 7:42 pm
Posts: 25
thanks ;)


Top
 Profile  
Reply with quote  
 Post subject: Re: Replacements help topic.
PostPosted: January 4th, 2022, 11:24 pm 

Joined: February 18th, 2012, 7:42 pm
Posts: 25
Hi Freddy

Before:

Code:
[img]https://site.com/content/word1-word2-word3.jpg[/img]

[img]https://site.com/content/word1-word2-word3.jpg[/img]

word word word

[url=https://site.com/premium/word1 word2 word3][/url]



After:

Code:
[img]https://site.com/content/word1-word2-word3.jpg[/img]

[img]https://site.com/content/word1-word2-word3.jpg[/img]

word word word

[url=https://site.com/premium/word1_word2_word3_word4][/url]


In the last line, replace the gaps to the lower underscore (Word1_Word2_Word3)

:roll:


Top
 Profile  
Reply with quote  
 Post subject: Re: Replacements help topic.
PostPosted: January 5th, 2022, 10:36 am 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12630
Location: Earth
What's the URL where it's leeched from? Would need to make some tests.

_________________
themaPoster | themaCreator | themaManager | themaLeecher | themaRegister


Top
 Profile  
Reply with quote  
 Post subject: Re: Replacements help topic.
PostPosted: February 3rd, 2022, 4:37 pm 

Joined: July 28th, 2020, 3:27 pm
Posts: 68
Location: Ireland
I would like to delete everything after an certain string (everything behind it), how can I do that with regex

_________________
Retired


Top
 Profile  
Reply with quote  
 Post subject: Re: Replacements help topic.
PostPosted: February 3rd, 2022, 4:52 pm 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12630
Location: Earth
I would need specific "Before" and "After" example to write it (just to avoid mistakes, you can later adjust the string on your needs).

_________________
themaPoster | themaCreator | themaManager | themaLeecher | themaRegister


Top
 Profile  
Reply with quote  
 Post subject: Re: Replacements help topic.
PostPosted: February 3rd, 2022, 5:44 pm 

Joined: July 28th, 2020, 3:27 pm
Posts: 68
Location: Ireland
Code:
Check your users’ navigation history: use it to highlight those products that they have previously viewed and send them tailored emails with special offers.

YITH WooCommerce Recently Viewed Products Premium v2.0.2 Free Download. This is the latest version which was last updated on March 13, 2021 on Nulled Codecanyon.

Content index

[list]
[/list]

[b]Download YITH WooCommerce Recently Viewed Products Premium v2.0.2[/b]

[b]Live demo:[/b] [HIDE]
[url=https://yithemes.com/themes/plugins/yith-woocommerce-recently-viewed-products/]Live Demo[/url]
[/HIDE]

[HIDE]
[url=https://drive.google.com/uc?export=download&id=1DuiZl8aJiv3TVKYsom1jxnlfeyjgS3p6]DOWNLOAD LINK[/url]
[/HIDE]

Free download by on codecanyon premium scripts newspaper, cms nulled download.

[list]
[*]What is YITH WooCommerce Recently Viewed Products Premium v2.0.2 and what is it used for?
[*]How can I [b]download the latest YITH WooCommerce Recently Viewed Products Premium v2.0.2[/b]?
[/list]

[b]Main features[/b]

#products, #Recently, #Recently-Viewed-Products, #Viewed, #Viewed-Products, #woocommerce, #YITH, #YITH-WooCommerce, #YITH-WooCommerce-Recently-Viewed-Products,

[b]ALSO DOWNLOAD[/b]
[HIDE]
[url=https://codecanyon.download/thrive-ultimatum-v2-3-9-4-nulled/]Thrive Ultimatum v2.3.9.4 (Nulled)[/url]
[/HIDE][HIDE]
[url=https://codecanyon.download/thrive-headline-optimizer-v1-3-7-3-nulled/]Thrive Headline Optimizer v1.3.7.3 (Nulled)[/url]
[/HIDE][HIDE]
[url=https://codecanyon.download/thrive-leads-v2-3-9-4-nulled/]Thrive Leads v2.3.9.4 (Nulled)[/url]
[/HIDE][HIDE]
[url=https://codecanyon.download/thrive-optimize-v1-4-13-3-nulled/]Thrive Optimize v1.4.13.3 (Nulled)[/url]
[/HIDE][HIDE]
[url=https://codecanyon.download/thrive-ovation-v2-4-4-nulled/]Thrive Ovation v2.4.4 (Nulled)[/url]
[/HIDE][HIDE]
[url=https://codecanyon.download/yith-woocommerce-one-click-checkout-premium-v1-5-6/]YITH WooCommerce One-Click Checkout Premium v1.5.6[/url]
[/HIDE][HIDE]
[url=https://codecanyon.download/yith-woocommerce-product-bundles-premium-v1-4-6/]YITH WooCommerce Product Bundles Premium v1.4.6[/url]
[/HIDE][HIDE]
[url=https://codecanyon.download/yith-woocommerce-surveys-premium-v1-2-11/]YITH WooCommerce Surveys Premium v1.2.12[/url]
[/HIDE][HIDE]
[url=https://codecanyon.download/yith-woocommerce-share-for-discounts-premium-v1-6-9/]YITH WooCommerce Share For Discounts Premium v1.6.9[/url]
[/HIDE][HIDE]
[url=https://codecanyon.download/yith-woocommerce-sms-notifications-premium-v1-5-4/]YITH WooCommerce SMS Notifications Premium v1.5.4[/url]
[/HIDE][HIDE]
[url=https://codecanyon.download/yith-woocommerce-quick-checkout-for-digital-goods-premium-v1-3-9/]YITH WooCommerce Quick Checkout for Digital Goods Premium v1.3.9[/url]
[/HIDE][HIDE]
[url=https://codecanyon.download/yith-woocommerce-zoom-magnifier-premium-v1-5-11/]YITH WooCommerce Zoom Magnifier Premium v1.5.11[/url]
[/HIDE][HIDE]
[url=https://codecanyon.download/gridbuilder-v1-5-5-create-advanced-filterable-and-faceted-grids-wordpress/]Gridbuilder v1.5.6 – Create Advanced Filterable and Faceted Grids WordPress (+Addons)[/url]
[/HIDE][HIDE]
[url=https://codecanyon.download/briefcase-elementor-widgets-v2-0-4-nulled/]Briefcase Elementor Widgets v2.0.5 (Nulled)[/url]
[/HIDE][HIDE]
[url=https://codecanyon.download/gdpr-cookie-consent-v2-3-4-nulled/]GDPR Cookie Consent v2.3.4 (Nulled)[/url]
[/HIDE][HIDE]
[url=https://codecanyon.download/yith-woocommerce-recover-abandoned-cart-premium-v2-0-5/]YITH WooCommerce Recover Abandoned Cart Premium v2.0.5[/url]
[/HIDE][HIDE]
[url=https://codecanyon.download/wppayform-pro-v2-0-1-wordpress-payments-made-simple-nulled/]WPPayForm Pro v2.0.2 – WordPress Payments Made Simple (Nulled)[/url]
[/HIDE][HIDE]
[url=https://codecanyon.download/yith-woocommerce-advanced-reviews-premium-v1-6-21/]YITH WooCommerce Advanced Reviews Premium v1.6.21[/url]
[/HIDE][HIDE]
[url=https://codecanyon.download/bulk-table-editor-for-woocommerce-v2-1-20/]Bulk Table Editor for WooCommerce v2.1.20[/url]
[/HIDE][HIDE]
[url=https://codecanyon.download/coming-soon-maintenance-mode-pro-v6-26-nulled/]Coming Soon & Maintenance Mode Pro v6.26 (Nulled)[/url]
[/HIDE][HIDE]
[url=https://codecanyon.download/optimizer-pro-v0-8-0-multipurpose-wp-theme/]Optimizer PRO v0.8.0 – Multipurpose WP Theme[/url]
[/HIDE][HIDE]
[url=https://codecanyon.download/fable-v3-8-children-kindergarten-wordpress-theme/]Fable v3.8 – Children Kindergarten WordPress Theme[/url]
[/HIDE][HIDE]
[url=https://codecanyon.download/event-champ-v2-0-4-multiple-event-conference/]Event Champ v2.0.4 – Multiple Event & Conference[/url]
[/HIDE][HIDE]
[url=https://codecanyon.download/smash-balloon-social-wall-pro-v1-0-3-nulled/]Smash Balloon Social Wall Pro v1.0.3 (Nulled)[/url]
[/HIDE]


Everything behind ALSO DOWNLOAD should be deleted.

_________________
Retired


Top
 Profile  
Reply with quote  
 Post subject: Re: Replacements help topic.
PostPosted: February 3rd, 2022, 6:51 pm 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12630
Location: Earth
It's usually better to remove that with "Remove elements" selector when possible. I would need URL where it was leeched from to take a look.

_________________
themaPoster | themaCreator | themaManager | themaLeecher | themaRegister


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 283 posts ]  Go to page Previous  1 ... 14, 15, 16, 17, 18, 19  Next

Who is online

Users browsing this forum: Marisol and 21 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Theme designed by stylerbb.net © 2008
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All times are UTC