Arturofm
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Create a portfolioI don’t have any in particular, all the ones I choose as soon as I activate it, the main page is the blogs and not what shows on the template
Forum: Fixing WordPress
In reply to: Description on googleSo does that mean that I can’t changed what google shows on the result?:
This is what I get:
https://s31.postimg.org/hx8k6wre3/image.png
What can I do to change it? what do you suggest?
Forum: Fixing WordPress
In reply to: Description on googleCould you tell me in what section is it? I looked all around even submited the XML map to google but it doesn’t change :/
Forum: Fixing WordPress
In reply to: Description on googleThank you Steve, but I can’t find it in googlewebmaster
Forum: Fixing WordPress
In reply to: root to php.iniI tried imputing “php_value memory_limit 64M” in my .htaccess file but it gives me internal error…
Also this:
wp-config.php file:
‘WP_MEMORY_LIMIT’, ‘128M’);but it doesn’t work :/
EDIT: lol everytime I try something different I get a new line code error ahhh. This time I tried this:
wp_initial_constants(‘WP_MEMORY_LIMIT’, ’64M’);
or this
define(‘WP_MEMORY_LIMIT’, ’64M’);`
in my wp-settings.php
but nothing…
Final EDIT:
Allright… I don’t know what I did, I was about to pull my hairs lol, the wp-admin wasn’t even opening now, so I tried to fix the xp-admin and I ranwriting again in wp-config.php: “define(‘WP_MEMORY_LIMIT’, ‘128M’);” and I fixed the problem of the admin login and the memory lol
Thanks anyways
Forum: Fixing WordPress
In reply to: Change the word limit on a postI thought it was something else, thank you, I’ll take a look at that.
Forum: Fixing WordPress
In reply to: How to oranize the structure of the posts?lol ok Andrew Nevins, I understand.
Ok, I noticed that this is easier than I thought… I put “excerpt” on the search engine and it gave me this plugins: Easy Custom Auto Excerpt. ^_^
Thanks both for the help
Sorry for the triple post, I wanted to post it in case another person have this “problem”
Forum: Fixing WordPress
In reply to: How to oranize the structure of the posts?Can someone help me please? I’m not a programmer, I just want my blog to post my stuff.
Forum: Fixing WordPress
In reply to: How to oranize the structure of the posts?graphical you are a great teacher, but I need to study math and I’m spending too much time in something that I don’t know yet, I haven’t even look at the widgets of the web, can you just help me with this now please.
Forum: Fixing WordPress
In reply to: How to oranize the structure of the posts?I’ve been trying to insert these codes:
function new_excerpt_more( $more ) { return '[.....]'; } add_filter('excerpt_more', 'new_excerpt_more' 200);
or
function custom_excerpt_length( $length ) { return 20; } add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
at the end of function.php but it doesn’t do anything…
Forum: Fixing WordPress
In reply to: How to oranize the structure of the posts?Thanks kmessinger, I’ll read everything.
graphical this is the code in content.php
<?php /** * @package Kirumo */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header class="entry-header"> <h1 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h1> </header><!-- .entry-header --> <?php if ( has_post_thumbnail() ) { the_post_thumbnail( 'large' ); } ?> <?php if ( is_search() ) : // Only display Excerpts for Search ?> <div class="entry-summary"> <?php the_excerpt(); ?> </div><!-- .entry-summary --> <?php else : ?> <div class="entry-content"> <span class="genericon genericon-standard post-format-icon"></span><div class="post-format-content"><?php the_content( __( 'Continue reading <span class="genericon genericon-next"></span>', 'kirumo' ) ); ?></div> <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'kirumo' ), 'after' => '</div>', ) ); ?> </div><!-- .entry-content --> <?php endif; ?> <?php get_template_part( 'content', 'footer' ); ?> </article><!-- #post-## -->
Forum: Fixing WordPress
In reply to: How to oranize the structure of the posts?Sorry, my skills are limited in this area. I want to change it only in the index page, where the posts are, nothing else.
I don’t know where is the code, do you mean this?
/* Theme Name: Kirumo Theme URI: https://kirumo.johnregan3.com Author: John Regan Author URI: https://johnregan3.me Description: Kirumo is a simple reponsive blogging theme with an elegant sliding mobile menu. This theme supports custom background colors and images, as well as a custom accent (link) color. One if its unique features is a full-width page template with a horizontal row of three widgets below. It also features formatting for all post formats, RTL layouts, and vertical featured images. Download Kirumo and take it for a test drive! Version: 0.3 License: GNU General Public License v2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html Text Domain: kirumo Domain Path: /languages/ Tags: black, custom-colors, custom-header, custom-menu, dark, featured-images, fluid-layout, full-width-template, gray, left-sidebar, post-formats, responsive-layout, right-sidebar, rtl-language-support, sticky-post, threaded-comments, translation-ready, two-columns, white Kirumo WordPress theme, Copyright (C) 2014 John Regan Kirumo WordPress theme is licensed under the GPL. Genericons font is licensed under the GPL and is available from https://genericons.com. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Kirumo is based on Underscores https://underscores.me/, (C) 2012-2013 Automattic, Inc. Resetting and rebuilding styles have been helped along thanks to the fine work of Eric Meyer https://meyerweb.com/eric/tools/css/reset/index.html along with Nicolas Gallagher and Jonathan Neal https://necolas.github.com/normalize.css/ and Blueprint https://www.blueprintcss.org/ */ @import url( "inc/css/base.css" ); @import url( "inc/css/mobile-menu.css" ); @import url( "inc/css/kirumo.css" ); @import url( "inc/css/structure.css" ); @import url( "inc/css/genericons.css" );
Forum: Fixing WordPress
In reply to: How to oranize the structure of the posts?Thank you, but how would I do it? Ay the end of the post I put this?
function new_excerpt_more( $more ) {
return ‘ Read More‘;
}
add_filter( ‘excerpt_more’, ‘new_excerpt_more’ );Forum: Fixing WordPress
In reply to: How to oranize the structure of the posts?Hi graphical_force, thanks for helping me. I’m looking for something like this: https://dosomethingcool.net/ . I want the posts like that, is there anyway that I can get it like that by just changing the theme?