sebastian_a
Forum Replies Created
-
Forum: Plugins
In reply to: [Woo Store Vacation] Set start date to start immediately or todays dateThanks @mahdiyazdani. Much Appreciated!
Forum: Plugins
In reply to: [Woo Store Vacation] Set start date to start immediately or todays dateHi @mahdiyazdani,
thanks for your response, I was able to turn on the vacation message immediately by modifying the database’s options settings (finally found it LOL). This isn’t ideal obviously and def would not be something in a client’s hands. But this does not solve the problem overall. I. understand that there is a use case of ‘going on vacation’, but what if a person is leaving NOW and they forgot to do just that, so setting something for up to 24hrs (23.59hrs to be exact) might not be ideal.
Why not enable the start date to be any date (even ‘now’ or in the past)? Is there a reason for this that I don’t understand?
Forum: Plugins
In reply to: [White Label CMS] Dashboard without StyleSeeing the same on a few sites. Since i thought this might be related to WP5.5 I installed a jQuery migrate helper and disabled any caching methods, but I don’t see changes. It also seems to fail silently without message in the console or network panel.
Forum: Fixing WordPress
In reply to: WP_query loop after single post, before commentsI found a solution and posted it here. Maybe it helps you as well:
https://www.ads-software.com/support/topic/276637?replies=2Forum: Everything else WordPress
In reply to: How to change names of uploaded image?Well unfortunately that does not help with the automatic renaming for thumbnails, medium, and large images. I am looking for a solution that allows to override the naming convention of already uploaded files.
Forum: Fixing WordPress
In reply to: Image gallery columns not workingA dev version is up at https://tinyurl.com/plvttg
I have tried to edit the media.php file to set the default to 2 columns, however that does not seem to have any effect. I don’t believe it’s space (width) related as I am trying to use less space than available.
esmi, any help or hint is greatly appreciated.
Forum: Fixing WordPress
In reply to: Displaying category posts on a pageSince nobody replied I thought I post my solution so it may help others.
‘
<?php
/*
Template Name: Staff
Version: 1.0
Author: Sebastian Auer
URL: https://neolithmedia.com*/
?><?php get_header() ?>
<div id=”container”>
<div id=”content”><?php while ( have_posts() ) : the_post() ?>
<div id=”post-<?php the_ID() ?>” class=”<?php sandbox_post_class() ?>”>
<h2 class=”entry-title”><?php the_title() ?></h2>
<div class=”entry-content”><?php the_content(); ?></div>
</div><?php endwhile; ?>
<!– <h2>Meet the staff</h2> –>
<?php query_posts(‘cat=6&orderby=title&order=ASC’);
while (have_posts()) : the_post(); ?>
<div class=”<?php sandbox_post_class() ?>”>
<h3 class=”entry-title”><?php the_title(); ?></h3>
<div class=”entry-content”><?php the_content(); ?></div>
</div><?php endwhile; ?>
</div><!– #content –>
</div><!– #container –><?php get_sidebar() ?>
<?php get_footer() ?>
‘Forum: Fixing WordPress
In reply to: Gallery showing wrong number of columnsI’m having the same issue, but editing the function does not seem to change the outcome. I have changed the media.php columns default to 4 and to 2 however WP still displays 3 columns.
Lost….
Any help would be greatly appreciated.
Forum: Fixing WordPress
In reply to: Gallery only displays 3 columnsDid anyone figure out why this is happening? I have tried the referenced fix, however I am still getting the same result.
Forum: Fixing WordPress
In reply to: Image gallery columns not workingI have the same problem, however I am trying to display only 2 columns. Whatever the number in the columns setting I get a 3 column layout. Anyone have any ideas?
‘[gallery link="file" columns="2"]‘
Thanks for any help or advice.
bump
Forum: Everything else WordPress
In reply to: How to change names of uploaded image?Thats something I would like to know as well. Makes referencing images in a post a LOT easier.
Forum: Fixing WordPress
In reply to: WP_query loop after single post, before commentsI’d like to know this one as well. I have been struggling with this a little. I have a category of post that I would like to be added to a page after the content of that page. However I cannot get this query to run nor display.