Michael Kloepzig
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Fluxipress] insert galleryYou can insert galleries in any blog entry following this guide:
https://codex.www.ads-software.com/The_WordPress_GalleryForum: Themes and Templates
In reply to: [Fluxipress] Images not displaying on front pageOn a side note, I see this as a feature, as it allows you to use seperate images on the front page (= the Post Thumbnail / Featured Image) and on the post / page (= the image you insert using the post editor).
Forum: Themes and Templates
In reply to: [Fluxipress] Images not displaying on front pageSorry Jordie_Y, your request arrived when i was on vacation.
The images, as shown in the screenshot image, are inserted using the Featured Image dialog when editing your post or page.
More infos here: https://codex.www.ads-software.com/Post_Thumbnails#Setting_a_Post_Thumbnail
Most HTML is stripped from the excerpt in order to prevent collisions with the layout and javascript.
Forum: Themes and Templates
In reply to: [Fluxipress] Increasing content area of fluxipressFirst, create a child theme. Here’s how:
https://codex.www.ads-software.com/Child_Themes#How_to_Create_a_Child_Theme
Then, in your child theme style.css, add this line:
.wrap { max-width: 1280px; }
Adjust the value as you like.
Forum: Themes and Templates
In reply to: [Fluxipress] Jquery problemsHi,
please follow the guidelines to create a child theme:
https://codex.www.ads-software.com/Child_Themes#How_to_Create_a_Child_ThemeThen, in your child theme’s folder, open functions.php and find the following lines (68-76):
wp_deregister_script('jquery'); wp_register_script( 'jquery', 'http' . ($_SERVER['SERVER_PORT'] == 443 ? 's' : '') . '://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js', array(), false, true ); wp_enqueue_script('jquery');
Replace them with:
wp_enqueue_script('jquery');
This should enable the default jquery inclusion of whatever version wordpress uses right now. Your plugin should be compatible to that.
If that doesn’t work, use my old code again, and change the part of the jquery path that says 1.9.1 to whatever version you need. The latest would be 2.1.1.Forum: Themes and Templates
In reply to: [Fluxipress] gallery on fluxipress themYou need to edit your gallery and make sure that you select “media file” instead of “attachment page” in your gallery settings.
Sorry I couldn’t help. Stay subscribed to this thread, i’ll let you know when I find out anything to resolve this issue.
Forum: Themes and Templates
In reply to: [Fluxipress] Remove Flashing or Blinking linksMake a child theme (https://codex.www.ads-software.com/Child_Themes), add a style.css and inset this line:
a:active { opacity: inherit; }
Another try:
Edit /wp-content/themes/fluxipress/js/init.js
Find at the end:
console.info(numFooterWidgets);
and remove this line.
Save, upload & clear browser cache (ctrl+shift+del) and reload the page. *crosses fingers*Forum: Reviews
In reply to: [Fluxipress] Great themeIssues have been resolved in the latest version. Let me know, if further bugs occur.
Forum: Themes and Templates
In reply to: [Fluxipress] Edit links on excerpt and "read more"content-postlist.php, line 23 is what you are looking for. Replace the link <?php the_permalink(); ?> with a link of your choice. Maybe a custom field will do: https://codex.www.ads-software.com/Custom_Fields
Forum: Themes and Templates
In reply to: [Fluxipress] Custom menu links in the Navigation?Use the WordPress Menu function: https://codex.www.ads-software.com/WordPress_Menu_User_Guide for custom links.
Adding images would require some changes in CSS and HTML. It’s probably easier to use a sidebar widget.Weird, that’s exactly my setup.
One last idea:
Instead of adding that div, as you wrote in your first post, edit content-postlist.php, first line:<div id=”post-list” class=”clear”>
and see if that does anything.
which version of firefox is this? (check the help menu, “about firefox”)
I have just updated to 1.0.5., by the way.
And the bug still occurs? I still can’t reproduce it on any browser I have.