Tagged Questions
0
votes
0answers
17 views
Using arrays in $_REQUEST
I am setting up a form that will be populated with arrays of information, e.g.
<input name="model[]"><input name="make[]">
and those two inputs would be repeated n times. I would expect ...
0
votes
3answers
22 views
How to trigger $_GET request within admin plugin page?
I have this form in my plugin function:
<form method="get" action="" enctype="multipart/form-data">
<p class="submit">
<input type="hidden" name="do_it_hidden" value="run">
...
-2
votes
1answer
81 views
wordpress illegal string offset 'parameter' error
I am getting the error illegal string offset when creating a checkbox in the admin.
my code look like this.
<input type="checkbox" id="slideThre" name="custom_settings[checked]" value="1" ...
0
votes
2answers
55 views
Some images on Wordpress site are suddenly gone
I am not sure when this started happening as I have not been paying close attention. I've tried disabling recent plugins to no avail. Some of my images are just gone and there doesn't seem to be a ...
4
votes
1answer
60 views
Output in XHTML or HTML 5 for plugins?
I'm currently writing a plugin that displays some images - possibly with captions. So, I was wondering whether to use XHTML (<div>s and <span>s) or HTML 5 (<figure> and ...
3
votes
1answer
169 views
Using tabs for wordpress plugin
Done my research and found this is how to call the built-in ui tabs jquery script in wp for the admin area but I'm stuck on implementing the other jquery scripts needed that I believe are built into ...
0
votes
1answer
135 views
plugin shortcode output
I have a plugin which uses this shortcode: [daisy]
And the html output of this shortcode is : <a class="clickable">Click Here</a>
Plugin is working perfect if I use the shortcode to ...
0
votes
1answer
106 views
is ther a plugin that will hide/show content for a scheduled period of time?
We would like to post some html during a specific time on a given day of the week.
For instance: Imagine a website for a TV station that wants to show what is on the air right now.
I am looking for a ...
0
votes
1answer
256 views
How to use WP Static HTML Output plugin regardless permanent link structure
I'm using this plugin to generate HTML files from my database, however, the generated files are put into folders that follows the permalink structure. I'm looking for a different thing, that is to ...
0
votes
1answer
366 views
how to convert XML from URL to HTML
I would like to know how can I, in Wordpress, convert XML URL (for example http://www.baligam.co.il/products/rss) to HTML and show it in actual.
Maybe there is a plugin for this purpose?
Thanks,
3
votes
4answers
102 views
How do I make my wordpress page more friendly for mobile viewers?
My basic question is How do I make my wordpress page more friendly for mobile viewers?
I have seen some answers such as wptouch, wordpress mobile pack, and mobilepress http ...
0
votes
1answer
84 views
Apply a Meta tag to one page only
I'm working on a IP Locator Service, and I want to display a Customized Google Map which shows the visitor's location. It works fine here, but I don't know how to incorporate it into my Blog.
I've ...
0
votes
2answers
374 views
How to include this jQuery File in wordpress?
Ok I have this jQuery that I have tested in a static html page and it works fine.
How would I include jQuery to work on wordpress in a plugin?
So this is the html page.
<head>
<title> ...
0
votes
1answer
174 views
Is there a syntax highlighting plugin for HTML View? [duplicate]
Possible Duplicate:
Syntax highlighting for post/page editor
I've googled this already to no avail, all I'm finding are syntax highlighting plugins to post actual code to the front-end of ...
0
votes
1answer
291 views
how to insert a HTML form into a javascript popup?
I'm working on a plugin that generates a list of candidates as output. For each candidate there is a link (View Details) that once is clicked, a popup appears. I need to put a simple contact form into ...
1
vote
3answers
63 views
How Do I Figure Out What File(s) to Edit from Looking at the Source Code [closed]
I just started working at a company and they have a website that was partially completed by another designer and have hired me to complete and make changes to it. It seems that most of the website was ...
0
votes
3answers
316 views
Looking for a way to include/embed text from a file on a page so that the short codes are processed
I'm using WP as a CMS. I've got multiple pages that share the same header.
group 1 has header 1. group 2 has header 2. etc.
I've looked at these two plugins for a quick way to insert a combination ...
0
votes
1answer
125 views
Theme deactived html and css styling on home page posts
I'm a designer trying to learn php, so I can't fully understand where the problem is coming from. That being said, I have a theme that has deactivated the use of css styling on the main page where ...
4
votes
4answers
532 views
dealing with large HTML output via plugin code
I recently wrote my first WP plugin that adds a shortcode for embedding a custom jquery image gallery into posts. It's primarily just dumps a good chunk of HTML into the post, along with javascript ...