depulpo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to add Active Class on index.phpthanks! that is exactly what i needed. cheers!
Forum: Plugins
In reply to: plugin article2pdf error help!cool. i will look at it! thanks!
Forum: Plugins
In reply to: plugin article2pdf error help!I am trying to find the place in your code where it structures how the page displays information. Currently, my images are being put on several different pages, and I would like them to all be on one page. Can you give me a hint?
Forum: Plugins
In reply to: plugin article2pdf error help!i got this all worked out. now trying to figure out how to get all my templates structured and pull in the information. thanks a lot for your responses. doesn’t seem like a whole lot of people read these forums and respond with helpful insight. i appreciate you responding!
Forum: Plugins
In reply to: plugin article2pdf error help!i think it is a .jpg verse .JPG issue. all the files that are uploaded have the uppercase JPG extension. can i alter that in the plugin??
Forum: Plugins
In reply to: plugin article2pdf error help!i will try doing some different changes in the page count options boxes…
Page %%page%% of %%pagestotal%%
it’s really crazy…
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] NextGen gallery upload is removing files!!! Help!there is a function doing this in functions.php
// all images must be valid files foreach($new_images as $key => $picture) { if (!@getimagesize($gallerypath . '/' . $picture) ) { unset($new_images[$key]); @unlink($gallerypath . '/' . $picture); } }
the @unlink function is removing the files…
Forum: Plugins
In reply to: plugin: nextgen gallery – uploading movie and sound files ?it would actually be cool to get a thumbnail, or at least have the gallery recognize that there is a mov in the gallery. currently the gallery lists the images, but does not show that there is a mov file in the gallery at all. if someone has found a way around this hack i am interested in how they did it.
Forum: Plugins
In reply to: NextGEN Custom Fields – delete fieldsgreat! i will look at it…
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] custom fields are not workingi am having trouble removing the fields once they are created. then, i deactivate the plugin, delete it, and make sure it is off my server. then i tried to reinstall it in hopes that all the fields would be gone so i can start over, and they are still there! i checked all the last modified files on the server, and i can not find the field names or information anywhere… any ideas??
Forum: Fixing WordPress
In reply to: Custom field value as linki am trying something similar with custom fields, however, one of my custom fields contains a link. i was wondering how to access that link on click
<li<?php if ($thisPage=="Page One") echo " id=\"currentpage\""; ?>> <a href="#">link to ebook</a></li> <li<?php if ($thisPage=="Page Two") echo " id=\"currentpage\""; ?>> <a href="#">watch video</a></li> <li<?php if ($thisPage=="Page Three") echo " id=\"currentpage\""; ?>> <a href="#">view report</a></li>
so when the user clicks the button for “watch video” it will access the link contained in the custom field… any ideas?
Forum: Themes and Templates
In reply to: Hiding if custom field is emptybenfranklin, this works perfectly… thanks so much for the help. is it possible to arrange that in a list form and add css styles? such as:
<div id="classHere"> <ul> <li><?php if (get_post_custom_values('screen1')) { echo implode(get_post_custom_values('screen1')); } </li> <li><?php if (get_post_custom_values('screen2')) { echo implode(get_post_custom_values('screen2')); } </li> </ul> ?>
just wondering. the solution you posted above is going to help me throughout my entire site. thanks again!
Forum: Plugins
In reply to: plugin: nextgen gallery – uploading movie and sound files ?i used this hack… however, i added the mov extension to all the pages throughout the entire next-gen gallery where jpg, png, and gif extensions were… after adding my gallery, i did not receive an error. there is not an ID or thumbnail for my mov files.
i uploaded the folder on the server (“movies” which contained images and an mov file), then added the gallery by putting in the path. no matter what, the mov file will still be there, cause i dropped it on the server. i personally do not need there to be a thumbnail or id because i have a button linking to the mov.
that being said, the error message not showing up is either being suppressed because i added the mov extension throughout the files, or because i did something wrong. either way, it makes no difference to me. the error message going away is good so that my client does not see it.
just thought i would share my experience in case it helps someone else…