graphics616
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [BizStudio Lite] Full Width Background Gallery very slow to loadThanks for the replies.
I am running both plugins and have decided to do as Mike and ardi.wirawan212 say, and disable “Remove write permissions from .htaccess and wp-config.php” when I need to make any changes to my files. I noticed when looking at that functionality in Better WP Security they state that this setting can interfere with other plugins and that is is not a “Critical” setting to have on. I will not obsess! Lol.
Thanks all.
Any takers on a possible answer to this? Don’t really want to disable a function of Better WP Security to make error messages go away in W3 Total Cache. Don’t want to give up on the plugin too soon either. Too many people are saying these plugins work together just fine. I just need a solution to this to move forward.
Thanks All.
I apologize esmi. I was under the impression that I was supposed to try to find my answers in the existing posts. I will post my version of the same question in a fresh post. I did not see an answer in the previous responses to this question and hoped to have a response from someone here without rehashing old territory.
Has anyone found a solution to this problem? I do not want to disable “Remove write permissions from .htaccess and wp-config.php” in Better WP Security, in order to have no error message, and I do not want to look at a permanent “Error” message at the top of the W3 Total Cache page as wpgeekster suggests. Is there a real fix for this problem?
I am using the Better WP Security version 3.6, and W3 Total Cache version 0.9.3, along with WordPress 3.7.1.
Thanks all.
Forum: Plugins
In reply to: [Cyclone Slider] Min-height for slider?Hi Coatesg,
Did you ever get a resolution to this problem? I am having a similar problem. I am using responsive, and when viewed on a phone screen, the caption is merging up into the body of the slider making it unreadable. It is like the height of the slider is too short. I have tried several fixes using firebug but no good.
The site that I am having trouble with is https://www.roadworksmfg.com.
Thanks much!
No ideas whatsoever from anyone?
I have resolved this very well. I realized that the shortcode did not contain the all of the same name fields. When I changed that, the city and business names sorted correctly as well.
Thank you for your response. I used the shortcode that you suggested and it did sort the states correctly but the cities are still not falling into order within the ordered states. What does
ASC, ASC, ASC
stand for by the way? Is that ascending? If so, what is the code for descending?Also just wanted to say, Great App. It does everything else just great and I am sure that this will be resolved as well.
Thanks for the earlier feedback. For anyone else that might have this problem in the future, my solution was as follows…
I changed the following code:
<tbody> <?php while ( $this->have_records() ) : $this->the_record(); // each record is one row ?> <tr> <?php while( $this->have_fields() ) : $this->the_field(); // each field is one cell ?> <td class="<?php echo $this->field->name ?>-field"> <?php $this->field->print_value() ?> </td> <?php endwhile; // each field ?> </tr> <?php endwhile; // each record ?> </tbody> <?php else : // if there are no records ?> <tbody> <tr> <td>No Records Found</td> </tr> </tbody>
To this:
<tbody> <?php while ( $this->have_records() ) : $this->the_record(); // each record is one row ?> <tr> <td> <table> <?php while( $this->have_fields() ) : $this->the_field(); // each field is one cell ?> <tr> <td class="<?php echo $this->field->name ?>-field"> <?php $this->field->print_value() ?> </td> <?php endwhile; // each field ?> </tr> </table> </td> </tr> <?php endwhile; // each record ?> </tbody> <?php else : // if there are no records ?> <tbody> <tr> <td>No Records Found</td> </tr> </tbody>
Not sure if that is the most elegant solution, but it worked to turn the horizontal table setup into a vertical table setup.
Thanks for the very quick answer.
I am able to understand by looking at the code in pdb-list-detailed.php that the code continually loops and and creates a new single row of each field of data in each record. I am strong in html and css, but I don’t know php well enough to know how to change it to loop through and create a new row for each field as it comes to it. I really like the positive reviews of this plugin so I really hope I can figure the php part out without taking too much time.