Problem with pagination link (error 404)

I have something here that I used on the website of a real estate agency You’re already using Bootstrap. But, take a look https://getbootstrap.com/docs/4.0/components/pagination/ In your code, a line before var $actualPagina = get_query_var… Add: global $actualPagina; So here’s what you do… Replace <?php get_template_part ( ‘paginacion_prop’ );?> by <?php thomas_pagination($propiedades->max_num_pages);?> In your functions.php enter … Read more

Can you edit a theme in a text editor?

When you install your theme via the WordPress admin panel, it’s just decompressing the ZIP file and placing the contents in a directory. For me, using Local as a dev server, that location was ~/Local Sites/<my-site-name>/app/public/wp-content/themes/<my-theme-name>. You can edit those files directly and the changes will be reflected when you refresh your browser.