bendproweb
Forum Replies Created
-
Thanks. That makes sense. I’ll just make their memberships expire and have them renew again.
Forum: Plugins
In reply to: [Clone] Error 404 Not Found nginx/1.8.1Mine went back up for almost 24 hours! It was amazing. Back down again. Now I’m getting different errors. ERR_CONNECTION_REFUSED and Error establishing a database connection in addition to the 404 error. Errors are on every site on my account. So frustrating.
Forum: Plugins
In reply to: [Clone] Error 404 Not Found nginx/1.8.1They didn’t even have any excuses this time.
-Told me I need to upgrade to their VPS or Dedicated plans and that I should “go for site optimization.”
-Sent me a link to their “my site is slow” page. None of it applies. My site traffic hasn’t increased, it is cached with w3tc with CDN set up through Amazon. The database is optimized. It was fast a week ago.That was an hour of my life I’ll never get back. Love that he asked “Is there anything else I can help you with?” at the end. ??
This is clearly on their end. I didn’t have these issues until a week ago. Not looking forward to the pain of moving my sites/email to a new host, but honestly can’t wait.Forum: Plugins
In reply to: [Clone] Error 404 Not Found nginx/1.8.1I’m having the same issue with some sites I have on a Hostmonster account. Last night they said “i could see that it was a temporary issue and now it has been resolved” and then a couple minutes later his answer was “Server was under maintenance so you were experiencing this issue.” Never actually had an answer. Today I’m still having issues. Pingdom shows one of my sites was down 19 times in the last 24 hours. I’ve been having server down issues for almost a week now. Hopefully they have an answer soon.
Forum: Plugins
In reply to: [Events Made Easy] No details box in Edit page and no end timesNice. That did the trick. I can update the end time now.
Thanks for the link. I’ll see if that clears it up for her.
Thanks for the super fast response!
Forum: Fixing WordPress
In reply to: Simultaneous users of one single subscriber account?Thanks catacaustic. The blog is actually behind a paywall but we want to give access to a large group of people for free. You need to be logged in to get to the protected content. There are still subscribers that will be paying monthly for access. Otherwise password protecting the page would definitely be an easier route. I guess we’ll give it a shot. I just didn’t want the site to crash or log people out for having too many people trying to use the same username.
Forum: Plugins
In reply to: [WP Store Locator] Map not showing up on FirefoxThanks Tijmen. I tried changing the jQuery to the newer version but, you were right, it broke a bunch of other stuff and the map wouldn’t load in Chrome then either. I ended up changing the jQuery to version 1.8.1 and everything seems to be working now.
Forum: Themes and Templates
In reply to: [Customizr] Logo link not workingThanks. Hopefully it gets fixed in an update.
Forum: Themes and Templates
In reply to: [Customizr] Use different logo after shrinkSorry. Forgot to mention. It’s still local on my computer. Here’s the section of code where the logo is:
<body class="home page page-id-2356 page-template-default tc-fade-hover-links tc-sticky-header chrome sticky-disabled animation-on hasGoogleVoiceExt" itemscope="" itemtype="https://schema.org/WebPage" cz-shortcut-listen="true"> <header class="tc-header clearfix row-fluid tc-tagline-off tc-title-logo-on tc-shrink-on tc-menu-on logo-centered" role="banner" style="height: auto; top: 0px;"> <div class="brand span3 pull-left"> <a class="site-logo attachment-6" href="https://localhost/bis/" title="Bend International School | A Global Model For Education"><img src="https://localhost/bis/wp-content/uploads/2014/10/bend-international-school-logo.png" alt="Back Home" width="141" height="235" data-no-retina="" style="height: 235px; width: 141px;"></a> </div> <!-- brand span3 --> <div class="navbar-wrapper clearfix span9 tc-submenu-fade tc-submenu-move tc-open-on-hover pull-menu-right"> <div class="navbar resp"> <div class="navbar-inner" role="navigation"> <div class="row-fluid"> <button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></button><div class="nav-collapse collapse tc-hover-menu-wrapper"><div class="menu-menu-1-container"
Any chance that might help?
Forum: Plugins
In reply to: [MaxGalleria] Thumbnail titlesI just figured out how to get the title to display below the thumbnail.
Find this line of code in /maxgalleria/addons/templates/image-tiles/image-tiles.php
if ($options->get_thumb_caption_enabled() == 'on' && $options->get_thumb_caption_position() == 'below') { $output .= ' <p class="caption below">' . $caption . '</p>'; }
And change $caption to $title like this:
if ($options->get_thumb_caption_enabled() == 'on' && $options->get_thumb_caption_position() == 'below') { $output .= ' <p class="caption below">' . $title . '</p>'; }
In this case if thumbnail captions are enabled and set to caption below, it will now output the title under the thumb instead of the caption.
If there’s an easier way that I’m missing, let me know, otherwise hopefully this helps someone else too.
Forum: Plugins
In reply to: [Admin Bar Login] Cant see the login area on mobileI was just coming to find out the exact same thing. Worked fine for a long time now won’t show up on mobile. Will show up on my ipad if it’s held landscape vs portrait. Won’t show on mobile phones or in browser window narrower than 783px. I checked in Chrome, Firefox and Safari. I have mobile users that can no longer access paid content. Any ideas?