paulwpxp
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Longevity] Linking a new page to the "Read More" buttonYou’re welcome, I’m happy to help out WP community 🙂
Forum: Themes and Templates
In reply to: Fixing a website…all content is in themes(1)
There is this plugin, works only if the page is in well formed HTML
https://wordpress.org/plugins/import-html-pages/(2)
Here is WP’s template hierarchy
https://developer.wordpress.org/themes/basics/template-hierarchy/Since we don’t know how this theme in particular pull up the content, I posted the link in (2) just so that we have it covered. I have a hard time believing that the site is pulling all the pages from templates, because he/she who created the site would need to create a lot of templates.
Any edits that I make in the pages currently do not show up, so it seems the template is overriding the page.
This could be of other reasons, could it be that you edited the wrong page?
Forum: Themes and Templates
In reply to: Two customization questions regarding the tag templateIt’s my pleasure, Dave.
BTW it seems the site has plain and simple minimalist kind of design, maybe it’s easier to work on basic theme (like WP default Twenty Sixteen), but anyway different thing works for different people. I wish you the best with your project.
Forum: Themes and Templates
In reply to: [Longevity] Linking a new page to the "Read More" buttonRight now the a tag has only # so it doesn’t lead to anywhere, since those are Text Widgets so you can just go right in and add the url.
Suppose you want the first widget’s read more to go to this url
http://example.com/Then this part
<a href="#" class="btn btn-sm blue">Learn More</a>will become this
<a href="http://example.com/" class="btn btn-sm blue">Learn More</a>Forum: Themes and Templates
In reply to: Two customization questions regarding the tag template1. Is there a way to adjust the CSS for the font-size and font-weight of the title that gets generated by the tag template? (in the case of the link above, the title is ‘Tema: Virtud’)
That part is in h1 tag and it should be displayed big but your theme style.css had been edited directly and tt has this h1 14px on line 58, while the original theme (same version being used on your site) had this h1 30px.
It’s better to keep all theme files untouched and only make changes via child theme, or Custom CSS plugin, so that we can get update and never worry about losing all the customizations.
Please consider doing this: make a full site backup first, switch to other theme (maybe one of the WP default themes), delete your current theme (Sempress), install the latest version of Sempress Theme and activate it, install a Custom CSS plugin and only put in additional CSS there.
2. Is there a way to display the posts in the tag template alphabetically rather than by date?
There is this info in the codex that you might find useful
https://codex.wordpress.org/Alphabetizing_PostsAlso, depending on the amount of posts wanted to display alphabetically, try one of these Custom Post Order plugins
https://wordpress.org/plugins/search.php?q=order+postFor the plugin, my suggestion is to tag (or categorize) all posts that wanted to display alphabetically, so that it’s easier to manage posts on the admin side because there could be also posts that’s wanted to display normally.
Forum: Themes and Templates
In reply to: [Accesspress Basic] Slider Image CenteredTry changing the selector to
.slider-image-container imgEDIT: thanks @lelandf , didn’t see your reply when I posted mine 🙂
Forum: Themes and Templates
In reply to: Remove Masthead from Blog pageThis is theme specific question, so find out what theme it is and post this question on its own forum. Be sure to read theme’s doc, the option to enable/disable the display of masthead conditionally might already be there.
If theme doesn’t offer this option, there are 2 ways to achieve this; first is to build a child theme and override header.php (or whichever template that outputs the masthead) and put in WP conditional tag, the 2nd way is to use CSS display none using WP body class.
Conditional Tags
https://codex.wordpress.org/Conditional_TagsBody Class
https://codex.wordpress.org/Function_Reference/body_classForum: Themes and Templates
In reply to: [Accesspress Basic] Slider Image CenteredCan’t help inspect it because your site is in Coming Soon mode now. But suppose your selector is correct, you should try something like this
.slider-image-container { display: block; margin: 0 auto; float: none; }Forum: Themes and Templates
In reply to: how to create a childtheme from a free wordpress themeThe codex page for creating ChildTheme is here
https://codex.wordpress.org/Child_Themesand the auto generate child theme plugin
https://wordpress.org/plugins/search.php?q=child+themeit is okay to uninstall the plugin once the childtheme is up?
I believe so, since it reads parent theme info and create the matching childtheme once. After that it’s safe to delete the plugin. But be sure to read the plugin info.
Forum: Themes and Templates
In reply to: Who can recommend a solution for me? ThanksRegarding the coupon page: we can use regular WordPress Page or Post to do just that. Depending on the detail of coupon, if it’s something simple, we can go with normal HTML table in post (or page) content. If the coupon contain lot of info, it’s better to use third party solution such as Google Doc (spreadsheet), and make a link or embed in post (or page) content.
Regarding the theme question, we can achieve multi-columns layout using WordPress custom page template, or it could be simpler using custom HTML and CSS in the page content. But this thing is detail oriented, there are way too many possibilities it can’t be answered specifically.
Forum: Themes and Templates
In reply to: [Sydney] Adjust leading of bodyThis CSS snippet will do just that
article p { line-height: 1.7; }or
article { line-height: 1.7; }Use the code in child theme style, or via a Custom CSS plugin. Change the number 1.7 to your liking.
Forum: Themes and Templates
In reply to: CSS Class Brackets?The first snippet targets audio element without controls and hide it. The second snippet is to hide template element and element that has
[hidden]attribute.Attribute selectors
https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectorsCSS pseudo-class, :not(X)
https://developer.mozilla.org/en/docs/Web/CSS/:notForum: Themes and Templates
In reply to: Hidden page title flashes on page loadHi Laura, it would be nice if you post this in plugin’s own thread so that the plugin author get to know the problem.
https://wordpress.org/support/plugin/hide-title
Anyway, seems to me it’s the loading issue, the plugin uses JS to add inline style to the html element targeting default WordPress title css class, it could be that the theme you are using, also maybe coupled with other plugins that use JS might have messed up the loading order. Or it could be also the font loading.
Meanwhile since you already have Jetpack installed, try this code in its Custom CSS module (make sure it’s enabled).
/* Front home page */ .page-id-2 .entry-header, /* Project parent page */ .page-id-287 .entry-header, /* all child pages of Project */ .parent-pageid-287 .entry-header { display: none; }Forum: Themes and Templates
In reply to: Changing Font Type and Colour HelpHi Russ, this kind of thing must be done via CSS only.
We need to install one of these Custom CSS plugin
https://wordpress.org/plugins/search.php?q=custom+cssand then for the code to use, it requires specific as to what section needs changes to what font family, with what color, and what font size.
First of all please make sure you are using child theme
https://codex.wordpress.org/Child_ThemesWe need to add in one extra argument mid_size for
the_posts_pagination()
https://codex.wordpress.org/Function_Reference/the_posts_paginationThe file to make change is index.php, add that argument in between Line45 an 46
https://themes.trac.wordpress.org/browser/twentysixteen/1.1/index.php#L45Also do the same thing for archive.php