Creatier
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Upgrade error: Cannot redeclare wp_convert_bytes_to_hr()No Problem, glad to be of service.
Hi Dave, I found some issues with the plugin that cannot be resolved with the four steps of awesomeness that we find included in your FAQ. I recommend you look into the install/activation-process and perform some extra checks. Installing on sub-domain seems to cause issues, or it might be caused by permission issues when creating files/folders in the root of the install.
I believe that it would solve a lot of cases in which the js/css can’t be loaded. The files are simply not there (included in wp_footer(), but 404), which will lead to a broken theme in the backend and screwed up views.
In the meantime, I’m migrating my site to another domain for development instead of the subdomain. Install seems to work fine then.
Ty for the plugin. Great potential but some things still require your attention. ??
Additional info:
I get 404 errors on the following includes:
flexslider.js
fitvids,js
spin.min.js
spin.js.The plugin tries to include these from tv.zuiderlucht.eu/ instead of the vimeography plugin folder. For me this would mean it is either a jquery error or the plugin does something weird with subdomains. I’ll report back when I’ve fixed the issue.
edit/
Somehow, when installing the bugsauce theme something went wrong. This will most likely apply to more wp-installs besides this one: the files required for the theme under **baseurl**/assets/js were not copied. It might be a permissions issue and manually copying the files to the required destinations will most likely fix it. ??
Let me know if it helped.
For all theme developers that experience issues that might relate to inclusion of important css/jquery with wp_footer, please note that wp_head() has to be called in the head in many situations for wp_footer() to function properly. Only wp_footer() in the footer of your theme won’t do. ??
I experience this issues as well. [raw][vimeography id=”4″][/raw]
Followed all the installation tips – no other plugins active, latest jquery and wp_head and wp_footer are called appropriately. Any thoughts?@mahnuee I experience the same issues with my install. [raw] displayed at the top and bottom of the plugin.
I hope there will be a fix available soon. I’ll post back when I solve it/find a possible solution.
I should mention that when using another orderby parameter the ordering & limiting seems to work fine. (used on the front page right now, but must find a way to replace it with orderby=order without breaking it.)
<?php wp_list_categories('orderby=id&order=desc&title_li=&style=none&hierarchical=true&depth=0&number=3'); ?>
Any thoughts appreciated!
Hi Scribu,
First of all, thanks for all the work on WP.
In the above example, shouldn’t the add_action be like:
add_action('init', 'my_queryable_custom_fields');
instead of define?I am looking forward to future versions of the plugin.
@npsites: if you only need to sort by ONE custom field than orderby=meta_value can be used without trouble as MichaelH already stated.
Good luck!
Forum: Hacks
In reply to: WP_Query and custom_field sorting questionGreat`! Thanks for pointing me in the right direction. Got it to work!
Forum: Themes and Templates
In reply to: Post Title beneath post image ?When entering the loop, simply output your imagery before everything else.. There is not that much else to understand. You could add the images using a plugin that uses custom fields. I recommend reading up on the basics before going any further: The Loop
Forum: Hacks
In reply to: Display post tags as imagesHi Matt,
I did this a while back with a nice hack/workaround, not a problem.
I assume that when your portfolio includes css, html and photoshop work you know how to edit a template.The function you are looking for is probably already in your template:
<?php the_tags( $before, $separator, $after ); ?>
create your icons inside your template_folder/images/icons/[tag_name].jpg/png/gif
alter the the_tags $before, $separator and $after variables accordingly.
Haven’t tested it but should be something like this:
<?php the_tags('<ul><li><img src="'.get_bloginfo("template_url").'/images/icons/','.jpg" /></li><li><img src="'.get_bloginfo("template_url").'/images/icons/','.jpg" /></li></ul>"); ?>
In case the_tags() already auto-formats into a list, just use the <img />- part of the above code.
Should at least kick you right in the right direction.
Good luck:)Forum: Plugins
In reply to: [More Fields] [Plugin: More Fields] All field information removed??I reposted this error: different name, same error. Second the issue posted in this thread.
Kalstrom, absolutely great plugin. Hoping for a bugfix.Additional info:
When trying to export the “removed” custom fields, it still seemed to contain the right setup (date fields, etc).
Hope this helps.