bertini
Forum Replies Created
-
Forum: Plugins
In reply to: [Firelight Lightbox] Upload path changeOkay i’ll look into that tomorrow.
Thank you.
Forum: Plugins
In reply to: [Firelight Lightbox] Upload path changeI added a fancybox button to the homepage under the slider called SUBIR MAS FOTOS.
Forum: Plugins
In reply to: [Firelight Lightbox] Upload path changeForum: Plugins
In reply to: [Firelight Lightbox] Upload path changeI’ll try to add it to the home page so you can see the problem easily. One sec!
Forum: Plugins
In reply to: [Firelight Lightbox] Upload path changeThe website i’m creating is siodental.com but it’s kind of annoying to get to the page i’m interested in (you’d have to fill many forms to register and it’s all in spanish…)
The reason I think fancybox is interfering is because I change the upload the path in a plain form and it works. Whenever I put the shortcode in the fancybox it doesn’t :/
I know it doesn’t really make sense…
Thanks anyway.
Forum: Fixing WordPress
In reply to: Footer disappeared from template…yes. I’m using the Avada theme.
The footer appears all the time. It’s just after filling that form that it disappears :/
Forum: Plugins
In reply to: [Firelight Lightbox] Repetitive ErrorSolved!!
echo '<div style="display:none" class="fancybox-hidden"><div id="fancyboxID-1">'; echo do_shortcode('[gravityform id="10" ajax="true"]'); echo '</div></div><a href="#fancyboxID-1" class="fancybox-inline">click</a>';replace fancybox for fancybox-inline.
Oops.
Forum: Plugins
In reply to: [Firelight Lightbox] Repetitive ErrorActually, the code i’m interested in running is:
echo '<div style="display:none" class="fancybox-hidden"><div id="fancyboxID-1">'; echo do_shortcode('[gravityform id="10" ajax="true"]'); echo '</div></div><a href="#fancyboxID-1" class="fancybox">click</a>';I’m using this in a new template I’m creating.
Hopefully i haven’t written something awful :O
Forum: Plugins
In reply to: [Firelight Lightbox] Repetitive ErrorNothing?
Forum: Plugins
In reply to: [Plugin: Login with Ajax] Letting users create own passwordNo one? π
Forum: Plugins
In reply to: Folder gallery pluginnothing? :/
Forum: Fixing WordPress
In reply to: creating page with wp_insert_postThe interesting part of my code is:
//Create Paciente PAGE!! $new_post=array( 'post_name' => $nombre." ".$apellido1." ".$apellido2, 'post_title' => $nombre." ".$apellido1." ".$apellido2, 'post_status' => 'publish', 'post_type'=> 'page', 'page_template'=>'paciente.php' ); $pageID=wp_insert_post($new_post); echo $pageID;