0
votes
2answers
131 views

Why the_title() filter is also applied in menu title?

I have created below function to hide page title . But when i execute it it also hide menu name also. Can any one please help on that it will be highly appreciated. function wsits_post_page_title( ...
1
vote
0answers
88 views

PHP wrap elements into ONE element

I'm trying to wrap several elements into one big element. For example: Multiple elements with [left_content]...[/left_content][left_content]...[/left_content] should be wrapped into <div ...
0
votes
2answers
319 views

How to wrap code in PHP Designer 8?

As I start to work in OOP's, I build a lot of classes and functions and I'd love to wrap each function automatically and expand when I like. Is that possible with PHP Designer 8. I am a jEdit user, ...
1
vote
1answer
233 views

Wrap all HTML tags between h3 tag sets with DOMDocument in PHP

I've got a follow up question to my question that has been answered by @Jack: Wrap segments of HTML with divs (and generate table of contents from HTML-tags) with PHP I've been trying to add some ...
2
votes
3answers
244 views

Wrap segments of HTML with divs (and generate table of contents from HTML-tags) with PHP

My original HTML looks something like this: <h1>Page Title</h1> <h2>Title of segment one</h2> <img src="img.jpg" alt="An image of segment one" /> <p>Paragraph one ...
0
votes
2answers
152 views

using regex to wrap images in tags

I've been using regex to wrap my images in < a > tags and altering their paths etc. I know using dom for this is better, having read alot of threads about wrapping, but im unable to understand how ...
1
vote
2answers
307 views

CakePHP - Form->select doesn't have a wrapping div?

I'm wondering why $this->Form->select() in CakePHP 2.1 doesnt come with a wrapping div and label. Do I have to wrap it by myself like: <?php echo '<div><label ...
0
votes
4answers
682 views

Find a certain word in a string, and then wrap around it

I have a big string, with more than 1000 words. What I need, is to find a certain word, and then wrap some words around it into a variable. $in = 'This is a very long sentence, what I need is to find ...
0
votes
3answers
97 views

Identify mail addresses of specific domain using Regular expressions

I want to wrap some html elements for gmail address in a given string. How can i do it with php regex. Input $string = 'Sample text name@gmail.com another text name2@gmail.com,name2@yahoo.com'; ...
1
vote
2answers
103 views

jquery wrapping classes with display:none tags

Hi I have a piece of code set up so that every time the user clicks on certain divs, the displaynone class is added (these divs already have class names for CSS): $(".header").click(function () { ...
2
votes
1answer
298 views

Need regex to add spaces in long words but ignore html tags and attributes

I need to add spaces in words within product description at a user supplied positon (we'll say 25 for example) to allow proper wrapping. I know css tricks can be used but that's not what I'm loooking ...
1
vote
5answers
173 views

How to display a snippet from a BIG string in php?

So let's say I have a giant string: "Hello my name is Bob. How are you today?" But I want to cut it short and end it with dots: "Hello my name is..." like that. How would I do this in PHP?
4
votes
2answers
1k views

Unable to wrap text in an image

I've created a PHP script, where you enter text in HTML input boxes, and then it will generate an image with a background image and the text in specific locations. I found this code that can wrap ...
2
votes
1answer
157 views

Wrap groups of links with a div? (PHP is an option)

I have a dynamically generated number of links that I would like to put automatically into divs in groups of three. Is there any way to easily do this with jQuery? The purpose is so that jQuery cycle ...
4
votes
1answer
1k views

How can I draw wrapped text using Imagick in PHP?

The Imagick library in PHP allows you to draw text on top of an image. How to I tell Imagick to wrap the text based upon some bounded text box?
0
votes
3answers
1k views

Textarea “wrap=hard” not working for Firefox

I have the following code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org /TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html ...
1
vote
3answers
3k views

Wrap Text in P tag

I'm trying to figure out how to wrap text like this : Morbi nisl tortor, consectetur vitae laoreet eu, lobortis id ipsum. Integer scelerisque blandit pulvinar. Nam tempus mi eget nunc ...