edgarfigaro
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: pixel width limited?I am having the same issue. Can you elaborate nini_bacher on which theme you were using and what steps you took to resolve the image resizing?
Forum: Plugins
In reply to: [Accordion Shortcode] Fixed accordions height ?Awesome! Well done fellas with this addition. I just recognized that a fixed height was being applied to each accordion. In my instance, it was using the height of the first accordion. In other people’s links, it wasn’t always the first item’s height.
I’m gonna e-mail the plugin author. Hopefully he’ll include this option in future updates.
Forum: Plugins
In reply to: [Contact Form 7] Customize contact form 7 in emailCan you do something like this in the message body? You MAY need to get into the code and change the encoding to text/html. Not sure if it’s set up by default.
From: [firstname] [lastname] <[email]> <table> <tr> <td>Subject: I am contacting you via the website.</td> <td></td> </tr> <tr> <td>Name: [firstname] [lastname]</td> <td>Telephone: [tel]</td> </tr> <tr> <td>E-mail: [email]</td> <td>Another field: [field2]</td> </tr> </table>Forum: Plugins
In reply to: [Contact Form 7] Contact formDid you read the link he posted Jerry? Just reposting your question isn’t helping anyone. Read the post and see if that helps. Then come back if you’re still having issues.
Forum: Plugins
In reply to: [WP Custom Fields Search] Date dropdown is too specificDon, I see what you did there with the dates. But it’s too broad. I was referring to how WordPress has Monthly archiving baked in. The drop down would be super effective if it has say: June 2013, May 2013, April 2013, etc…
The way is now with custom drop down values is too broad. I was trying to get in the code and disseminate where you pull in date info, but it got a bit overwhelming.
You will need to ask your hosting provider. Some provide a file which you can edit. Some allow you to create a php.ini of your own and it will meld the info with existing php.ini file.
You may not be able to see a php.ini file in your file structure, but rest assured it’s there somewhere.
I think your php settings have a memory limit which this file is exceeding.
Check your php.ini file and edit the line that looks like this.
memory_limit = 64M;
Be careful though, as if you’re using shared hosting your hosting company may limit how hight this can go. Try increasing it a few megs and see if that fixes it.
This is definitely NOT recommended to do. You could severely reduce accessibility and testing in all browsers your targeting will be a nightmare.
My suggestion is to normalize your css and html elements with a reset. I like http://meyerweb.com/eric/tools/css/reset/
That will get your forms uniform at least.
If you are hard set on restyling the drop down arrow, you can try this: http://stackoverflow.com/questions/611482/change-color-and-appearance-of-drop-down-arrow
It’s still not perfect but it’s a good start.
SOLVED IT!
The problem lied within the insert query in the (whatever your wp table prefix is)_galleriesslides table.
If you locate the db.php file within the helpers folders within the gallery slide plugin and find the following line:
$galleryslidequery = "INSERT INTO” . $wpdb -> prefix . strtolower($this -> pre) . “_galleriesslides(id,slide_id,gallery_id,created,modified) VALUES ('', '" . $slide_id . "', '" . $gallery_id . "', '" . $date . "', '" . $date . "');";and change it to:
$galleryslidequery = "INSERT INTO” . $wpdb -> prefix . strtolower($this -> pre) . “_galleriesslides(slide_id,gallery_id,created,modified) VALUES ('" . $slide_id . "', '" . $gallery_id . "', '" . $date . "', '" . $date . "');";You should be good. Insert queries cannot have blank or null values. the id was being set to nothing, so just removing it solved the issue.
I’m having the same issue. I believe it is a bug. Not sure how to fix though. Did you have any luck?