alek75
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Homepage content in 3 columnsDone it was easy, just using CSS.
I’ve changed this line:
.articles > li {margin:15px 5px 15px 5px;float:left;width:246px;height:180px;}in order to have a default width and a float left.
Forum: Fixing WordPress
In reply to: Homepage content in 3 columnsExactly what I would like to do is this:
Post #1 | Post #2 | Post #3
Post #4 | Post #5 | Post #6
Post #7 | Post #8 | Post #9Forum: Fixing WordPress
In reply to: Homepage content in 3 columnsno help?
Forum: Plugins
In reply to: Newsletter automatic with latest postsThere’s a payment version of this plugin that seems to do the job. I will check it.
Forum: Plugins
In reply to: Newsletter automatic with latest postsHi Sam,
I’ve tried subscribe2 also but it doesn’t has a list of emails or a widget so is only for registered users.Forum: Fixing WordPress
In reply to: Single page that shows more than one categorystill no solution to the problem
Forum: Fixing WordPress
In reply to: Single page that shows more than one categoryNo it doesn’t work have you checked the page? Sorry for the code.
Forum: Fixing WordPress
In reply to: Single page that shows more than one categoryok this is the result: https://test2.dpcgamers.com/news-2/
and the code of the news.php is:
[Code moderated as per the Forum Rules]Forum: Fixing WordPress
In reply to: Single page that shows more than one categoryForum: Fixing WordPress
In reply to: Single page that shows more than one categorysorry, done.
I’m thinking about another problem. If I take for example all the news categories, there will be duplicated news as for example a single news can have more than 1 category.
There’s a way to fix this?
Forum: Fixing WordPress
In reply to: Single page that shows more than one categoryDone: https://wordpress.pastebin.ca/1800291
Maybe the problem is with my template I don’t know.
Forum: Fixing WordPress
In reply to: Single page that shows more than one categoryHi Esmi,
I’ve read the template again but even if I copy the entire example it doesn’t work on my template. Check for example here: https://test2.dpcgamers.com/arc-cont.phpRegarding the “loop” the only thing I found is in the code and is this:
<?php if( $my_query->have_posts() ) : ?><?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<?php
//necessary to show the tags
global $wp_query;
$wp_query->in_the_loop = true;
?>
<div <?php post_class() ?> id=”post-<?php the_ID(); ?>”>
<h2>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?></h2>
<small><?php the_time(‘F jS, Y’) ?> <!– by <?php the_author() ?> –></small><div class=”entry”>
<?php the_content(‘Read the rest of this entry ?’); ?>
</div><p class=”postmetadata”><?php the_tags(‘Tags: ‘, ‘, ‘, ‘
‘); ?> Posted in <?php the_category(‘, ‘) ?> | <?php edit_post_link(‘Edit’, ”, ‘ | ‘); ?> <?php comments_popup_link(‘No Comments ?’, ‘1 Comment ?’, ‘% Comments ?’); ?></p>
</div><?php endwhile; ?>
<?php else : ?>
<h2 class=”center”>Not Found</h2>
<p class=”center”>Sorry, but you are looking for something that isn’t here.</p>
<?php get_search_form(); ?><?php endif; ?>
Forum: Fixing WordPress
In reply to: Single page that shows more than one categoryI’ve created news.php with this code inside:
<?php
/*
Template Name: News
*/
?>
<?php
$args= array(
‘cat’ => ‘21,18,13,44,15,24,27,42’,
‘paged’ => $paged
);
query_posts($args);
?>but the page doesn’t not show anything: https://test2.dpcgamers.com/news.php
Forum: Fixing WordPress
In reply to: Importing from Excel with attachmentsOk I’ve managed to import all the text data, but there’s no way to import all the attached images to each post?
I have like 5000 posts
Forum: Fixing WordPress
In reply to: Importing from Excel with attachmentsthere’s a lot of defaults import settings but there’s no way to create a custom one. May I use of them to import?
If there’s a way to understand the format of the file and the name that the pics must have in order to import that will be great