Leo Blanchette
Forum Replies Created
-
Forum: Reviews
In reply to: [Symbiostock - Sell Photos Online For Free!] This crashed my site instantlySo I can’t use Symbiostock on an existing site? Thanks.
Forum: Networking WordPress
In reply to: Separate .coms for multisite?Thank you much.
Forum: Plugins
In reply to: register_sidebar – whats the purpose of "class"? It doesn't do anything?Thank you for your help. See example:
<div class="panel panel-default home-beside-content"> <aside class="widget widget_text" id="text-8"> <div class="row panel-heading"> <h3 class="featured-posts col-md-12">This is a test</h3> </div> <div class="textwidget">This is a test</div> </aside> </div>
The problem remains, simply because of the order/way in which the widget is constructed. Is there a way I can change the structure of the default sidebar?
For instance, the before_widget should contain the class “panel panel-default“
NEXT should come the title:
<div class="row panel-heading"> <h3 class="panel-title featured-posts col-md-12">This is a test</h3> </div>
(Notice the presence and order of panel-heading, panel-title)
UNDER THAT should come “panel-body“
<div class="panel-body">the widget</div>
It seems impossible to obey that hierarchy when I register a widget. I can cheat it by having the after_title contain a:
<div class=panel-body'>
and the after_widget contain a</div>
but of course that breaks if the user does not provide a title.This is a real paradox! Is there a way to change the default template? Or add a class to that inner-most widget area?
Obeying bootstrap 3 structure is a real pain ??
Forum: Fixing WordPress
In reply to: Filepath to Chosen Home URLConsidering random cases, it would have to work if a user chooses **www . thesite . com / random / location /**
Forum: Fixing WordPress
In reply to: Significant changes to hault jquery functionsThis is regarding a modal popup…
Here’s the code that no longer fires my ajax post (or the function at all)
— the link (by class) —
<a id="6571" class="edit-image thickbox prettylink" href="#TB_inline?width=600&height=550&inlineId=ss-edit-image-box" data-id="6571" title="Edit Individual Image Info" style="display: inline;">? Edit 6571</a>
— the function —
$(document).on('click', ".edit-image", function (e) { ...nothing happens... });
Specifically due to the 3.6 upgrade.
Can’t for the life of me figure out what it is.
Forum: Fixing WordPress
In reply to: Custom Post Type – Multiple Templates?keesiemeijer, thanks a lot.
BTW – there’s about 73 (up to 100) sites benefiting from the plugin help you gave me before. https://www.symbiostock.info
Forum: Fixing WordPress
In reply to: Custom Post Type – Multiple Templates?So the idea of a dropdown list to switch the layout does not work with this?
Forum: Fixing WordPress
In reply to: Custom Post Type – Multiple Templates?Just to clarify – this gives the user to select a different layout (dropdown in edit area)
Forum: Fixing WordPress
In reply to: theme directory blocked off from public access?Ok, I’ll make a little more of a project figuring out what in particular is happening here. Thanks for your help.
Forum: Fixing WordPress
In reply to: theme directory blocked off from public access?I have all the patience in the world ?? But my users don’t like the idea of having to babysit the theme. For me I have to move the files in question to a directory (like content directory) which does not have this issue.
Forum: Fixing WordPress
In reply to: theme directory blocked off from public access?Thanks. In reality though people will not be patient enough to do that. Looks like I have a major change to implement. Appreciate your help.
Forum: Fixing WordPress
In reply to: theme directory blocked off from public access?Interesting – there could be any number of hosts they are using. Do hosts micromanage the particulars of WordPress?
I for instance use bluehost, and the problem came up with me as well, after switching from Inmotion. It just didn’t seem likely that a host would presume to alter a WordPress install.
Nevermind. I figured it out. Its because I didn’t ask nicely.
Forum: Fixing WordPress
In reply to: PHP ZIP functionality on all servers?Thanks! This is a plugin, so I’ll have to check conditionally I guess.
Can do a simpleclass_exists('ZipArchive');
check I suppose. Thanks a lot.Forum: Fixing WordPress
In reply to: WP_Query order by post meta numeric valueI could not have figured out that on my own, period. Your awesome.