alvaro0022
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Post Popup] Hide div, To hide the headerhello, I was able to solve it this way ..
In the style of the plugin – wp-post-modal-public.css.modal.show .header{ display: none; }
Forum: Plugins
In reply to: [WP Post Popup] Link in one modal to open/swap another modalI’m sorry. It works wonders, I was doing it wrong. Thanks for answering.
Great job!
GreetingForum: Plugins
In reply to: [WP Post Popup] Link in one modal to open/swap another modalHi, I have version 3.5.2 and when I click on a modal-link link within the modal, it closes
Is there any concrete way to place the links within the modal so that it is updated with the new content?Forum: Hacks
In reply to: open post in popupas I can do this, any ideas?
Forum: Hacks
In reply to: open post in popupHey there,
I will explain in more detail what I need, the idea is that when you click on a post, this is displayed in the same window popup.
Here’s an example!
Forum: Plugins
In reply to: [Link Exchange Lite] only showing 5 linksthe solution;
enters the plugin folder and open the archvio link-exchange-shortcode-list.php
and replace the following lines:$args = array ( 'post_type' => 'link_exchange', 'post_status' => 'publish' );
why
$args = array ( 'post_type' => 'link_exchange', 'post_status' => 'publish', 'posts_per_page' => '20' );
greeting!
Forum: Plugins
In reply to: [Link Exchange Lite] only showing 5 linksYou could make them appear more than 5 links?
Forum: Plugins
In reply to: [WP Modal Login] the testing does not worksomething missing in my functions.php, so I fail to run the plugins
help please!!
Forum: Plugins
In reply to: [WP Modal Login] the testing does not workthe problem is my subject, change the subject to work properly. Should I add something to my functions to work on my theme?
thank you very much for responding and sorry for my insistence. is an excellent plugin and it works great, I will try to modify for what I need. regards
Sorry to insist
You can identify custom fields automatically uploads images, for example (user_submit_image1, user_submit_image2, user_submit_image3)??a user uploads 5 pictures, I just need to display the image # 3. You can do this?
any ideas?
for example if a user uploads a lot of pictures show only user_submit_image_03
Forum: Fixing WordPress
In reply to: get image name in postI found this and it works!
<?php $args = array( 'numberposts' => -1, 'post_type' => 'attachment', 'post_parent' => $post->ID, 'post_mime_type' => 'image' ); $image = get_posts($args); if($image) { foreach($image as $key => $data) : ?> <?php echo $data->post_title; ?> <?php endforeach; } ?>
anyone have any suggestions to improve the code?