Stagger Lee
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: You have not logged in since June 2011….Thanks for reply. I changed it now to my own.
But, if my memory serves me well i did it once then gave up when i got same message about “since June 2011”.Will try to log in in few days couple of times, then mark it as “Solved” if all is OK.
PS: Password reset is not strange by itself, but year 2011. I didnt even used WordPress in this year, or was registered here.
Forum: Everything else WordPress
In reply to: You have not logged in since June 2011….Common people. Why do i need to reset password so often ?
Can i keep reseted password, or i have later to write my own ?
If i remember right i already did it once, and didnt help.Forum: Reviews
In reply to: [Dynamic Widgets] There is no better plugin for thisMP6 is soon in WP core as admin theme. Can you simply use scripts from MP6 ?
Thank you. It is well needed, because it is easy to miss a lot of photos in gallery.
I tried with Paginated Effects Gallery and hard coded short code in gallery Post template, but one simple check in YSlow says that it is more or less useless. Browser pulls all thumbs on page load, so what is point of huge gallery pagination. So i gave up with Paginated Effects Gallery.
Forum: Plugins
In reply to: [Infinite-Scroll] Artisteer generated ThemesContent Selector = .art-content
Navigation Selector = .art-pager
Next Selector = .next
Item Selector = .art-columnsFind yourself your Item selector with Firebug. Here had i some columns tweak “columns”, dont remember anymore why.
But if you need to replicate this here is code from home.php:
————————————————
<?php get_header(); ?> <?php get_sidebar('top'); ?> <?php if (have_posts()) { /* Display navigation to next/previous pages when applicable */ if (theme_get_option('theme_' . (theme_is_home() ? 'home_' : '') . 'top_posts_navigation')) { theme_page_navigation(); } ?> <?php for ($i = 0; $i < $wp_query->post_count; $i++) { echo '<div class="art-columns">'; theme_get_next_post(); echo '</div>'; } ?> <?php /* Display navigation to next/previous pages when applicable */ if (theme_get_option('theme_bottom_posts_navigation')) { theme_page_navigation(); } } else { theme_404_content(); } ?> <?php get_sidebar('bottom'); ?> <?php get_footer(); ?>
Forum: Themes and Templates
In reply to: Hide empty widgetThis one is quick and easy solution. But depending of subpage load widget can shows sometimes for a brief time.
$(function() { $('.textwidget').each(function() { if ($.trim($(this).html()) == '') $(this).parents('#text-15').remove(); }); });
It would be good to have it in Carousel. Not just for visitors pleasure and experience, but for consistency. It is stupid to have several CSS, JS scripts for galleries and to install another lightbox plugin (again maybe several CSS, JS) just to could open single image.
Wont mention different look of pop up windows.
If you chose not to have lightbox on single photo then you have that not so professional new window photo open.
So, it is more about professional look and consistency, than about giving visitors something extra.
Colorbox plugin handle it well, but Carousel is much better.
It is working OK now. For people with same problem, stupid Ckeditor force HTML entities as UTF-8 coding. No way to disable it in options.
Use Tinymce editor to save Page with Google code, leave it then continue to use Ckeditor if you need it.
Forum: Plugins
In reply to: [Infinite-Scroll] Center the loading imageI have that problem also. CSS only wont help, it always float left for a second then jump to the middle. Tried everything in CSS, #infscr-loading.
Some old topic but…. In your Post/Page edit your map and drag whole map with mouse down until you are satisfied. All dragging there, after save, reflects on the front.
Amazing, spent just 2-3 hours on stupid nothing. It was in theme style.css image styling, but Firebug could not find it.
Wrap Gmap shortcode in div class, put class in CSS and disable all image styling.
<div class="contact-gmap"> [google-map-v3 .......] </div>
.contact-gmap img { border: none; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; }
Embed map pulls some jQuery version that mess with my other plugins.
Or Overlay map types:
https://developers.google.com/maps/documentation/javascript/examples/maptype-overlay
This problem still exist and i dont know why. Tile Coordinates / Layer is it called i believe.
Dont know where to start to troubleshooting. Tested with 3 browsers.
Forum: Plugins
In reply to: [Background Manager] Background manager AND ArtisteerSome old topic, but it can help someone else.
Your background slide / image is working OK. You just dont see it because it is cover by background image from Artisteer style.css.
Just go to style.css in theme folder and comment background image in:
#something-main.