peterv74
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: database connection issueYou could install WordPress from the Cpanel (that by far is the best option), look at the last option “Softaculous Apps Installer”, normally the WordPress installer is the first option.
There is an option at the Cpanel under “software” named “WordPress Manager by Softaculous”, that will lead to the same installation window, let me know if you need more help at the installation window.
If you want to try to use your WordPress in your website directory, you could use the Cpanel database menu to create an empty database with a user name and password; use the file manager to change the WordPress file named wp-config.php to wp-configbak.php, then the next time you enter at the website WordPress will show the install window and will ask for a database name (use the new one you just created), a database user (use the new one you just created) a database user password (use the new one you just created), the host (use Localhost) and the table prefix (use wp_ if you like).
Changing the config file name must start the installation, otherwise, your WordPress copy surely needs a replacement.
I hope this can be of use.
Best regards.
- This reply was modified 4 years, 7 months ago by peterv74.
Forum: Fixing WordPress
In reply to: database connection issueHello
Looks like you are installing WordPress manually in a domain using a copy of an already installed WordPress.
Would be easier if you use the Softaculous App Installer in your Cpanel to install because it creates all the Database Details for you and it will provide easy access to the admin in case you forgot your admin password.
If you prefer to migrate an already installed WordPress site let us know, so we can provide more information on that matter.
I hope this can be of use to you.
Best regards from QVcreative.
Forum: Fixing WordPress
In reply to: PAGINA NO FUNCIONAHola
Recién entré en tu página y abre sin aviso alguno, será que ya resolviste?
Si perdiste tu contrase?a de WordPress puedes entrar por el Cpanel, desde la opción de WordPress en Softaculous Apps Installer le das a WordPress y te desplazas hasta el final de la página, vas a ver un área que llaman Current Installations y ahí veras un icono de una persona bajo la palabra admin, le das a click y esto te permite entrar en tu wordpress como administrador, luego entras en tu perfil y cambias la clave del administrador por una nueva que te sirva.
A mi parecer es la manera más sencilla, pero también puedes cambiar la clave directamente en la base de datos usando PHPmyadmin en el Cpanel del dominio, dejemos esto como plan alternativo si falla lo que te dije primero.
Esperando que esto sea de ayuda me despido cordialmente.
Atentamente desde QVcreative,
Pedro VargasYou could try to use DNS-OVER-HTTPS (DoH) by manually setting your DNS server to Cloudflare (IPv4 1.1.1.1 and 1.0.0.1 IPv6 2606:4700:4700::1111 and 2606:4700:4700::1001) or the google ones (IPv4 8.8.8.8 and 8.8.4.4 IPv6 2001:4860:4860::8888 and 2001:4860:4860::8844).
DoH packages it’s DNS queries as encrypted HTTPS traffic, so if something is messing with your DNS, this could help.
I hope this can be of use.
Best regards from QVcreative.
Forum: Fixing WordPress
In reply to: Media Library, Link URLYou are welcome.
If you think that this is all, please set the status to resolved.
Best regards from QVcreative.
Forum: Fixing WordPress
In reply to: Media Library, Link URLHello
WordPress fills all the required info when you upload a file, you could fill some fields if you choose to.
The fields are:
· Alternative Text: This text can be used as a description at the placeholder when the image fails to load.
· Title: you could change this field if you choose.
· Caption: Some slider plugins use these as caption text.
· Description: Some slider plugins use these as caption text.As these differ from the ones mentioned at your question, please let me know if you need more info.
Best regards from QVcreative.
Hello
I just visited your page and the links work as they should, I even used the incognito mode to check.
It’s already fixed?
Best regards from QVcreative.
Forum: Fixing WordPress
In reply to: Block height – fit to contentthe Hello
To fit any element into another one, you could set the with and height to 100%, it will take the parent size fully, to avoid any drawback just set to cero the padding and margin of the child element or it will get smaller to fill the requirement.
If the parent element has set box-sizing to border-box (a different case from yours), the parent element will subtract the margin and padding from the inner space, to keep the parent and child at the same size, just set the parent margin and padding to 0.
If you make the changes to the CSS file these can be altered at any time inside the page, to avoid that, you could fix the code or add “!important” to adjust the 0 value to permanent.
CSS ex.:
.wp-block-image > img { width: 100%; height: 100%; margin: 0; padding: 0!important; }
You could add the above code to see a draft change at the WordPress dashboard “Appearance” “Customize” “Additional CSS” you could press publish if you want to make permanent the change.
Forum: Installing WordPress
In reply to: WordPress not installing, 403 & database errorHello
If you are using a local environment, then you could try reinstalling your DataBase Server or all the development server, ex.: reinstall xampp, local by Flywheel, or similar program.
If you need some information at the database you could try to set a root password (google: reset mysql root password), then update at the Phpmyadmin directory, the config.inc.php file with the root user password inline 21.
If you are using a hosted server, then you could try to install your WordPress from the Cpanel “Softaculous Apps Installer” “WordPress” “Install Now”.
I hope this can be of use.
Best regards from QVcreative.
Forum: Fixing WordPress
In reply to: Images and fonts not showingForum: Fixing WordPress
In reply to: Images and fonts not showingHello
Would be best if you make visible your live version of the site until you fix the issue with the JQuery and the plugin at the folder js_composer.
To do that, you could edit or override two CSS selector opacity values from 0 to 1.
The first one:
.wpb_animate_when_almost_visible, .vc_column_container.wpb_animate_when_almost_visible { opacity: 0; }
located at: https://history.balmainfootball.com.au/wp-content/themes/themetrust-weston/style.css
at the line#: 4340The second is:
.wpb_animate_when_almost_visible { opacity: 0; }
located at: https://history.balmainfootball.com.au/wp-content/plugins/js_composer/assets/css/js_composer.min.css
at the line#: 7 Column#: 478.158To override the actual CSS drawback, you could set this code at the “Additional CSS” option, at the wordpress dashboard “Appearance” “Customize” “Additional CSS”, scroll down to add:
.wpb_animate_when_almost_visible, .vc_column_container.wpb_animate_when_almost_visible { opacity: 1!important; }
I hope this can be of good use.
Best regards from QVcreative.
Forum: Fixing WordPress
In reply to: Change image caption text sizeI’m glad to see you solved it.
You are welcome.Best regards from QVcreative.
Forum: Fixing WordPress
In reply to: Change image caption text sizeThere are many selectors, one per text element of the image section, let’s look at your example:
.wp-caption-text { font-size: 10px; }
The selector is
.wp-caption-text
as in the Title text selector in your page.uagb-block-0ca54584 .uagb-post__text .uagb-post__title a
the code left is the area where you can change the selected element propierties like{ font-size: 10px; /* to set the font size to 10px */ }
where I propose to use:
{ font-size: 10px; font-style: italic; /* to set the font style as italic */ }
The code to make the Title text change should be:
.uagb-block-0ca54584 .uagb-post__text .uagb-post__title a { font-size: 10px; font-style: italic; }
In the same context:
the Taxonomy label icon selector (this is the label image at the left side of the taxonomy text) and code could be:.uagb-post-grid .uagb-post__author span, .uagb-post-grid .uagb-post__comment span, .uagb-post-grid .uagb-post__taxonomy span, .uagb-post-grid .uagb-post__date span { font-size: 10px; }
and so on:
/* Taxonomy text */ .uagb-post-grid .uagb-post__text .uagb-post-grid-byline>* { font-style: italic; font-size: 10px; }
/* Excerpt text */ .uagb-block-0ca54584 .uagb-post__text .uagb-post__excerpt { font-style: italic; font-size: 10px; }
/* Read more button text */ .uagb-block-0ca54584 .uagb-post__text .uagb-post__cta a { font-style: italic; font-size: 10px; }
You could try all these codes at your theme customization area to see the live changes before publishing.
Search at the admin area of the WordPress dashboard menu for ‘Appearance’ ‘Customize’ then select ‘Additional CSS’, scroll down at the menu area then add the codes one by one looking at the caption text area.
You will notice the changes at once, so try increasing or decreasing the font size as you desire then click at the publish button.I hope this helps.
Best regards.
- This reply was modified 4 years, 8 months ago by peterv74.
Forum: Fixing WordPress
In reply to: Change image caption text sizeMaybe we can try a different approach, like a visual one.
The best practice would be to build child theme and then edit it’s style in a CSS way, to make it easier we can download these two plugins Child Theme Generator and Visual CSS Style Editor.
Use the first one to create and activate a child theme using as a parent your current theme (If you already have a child theme continue to the second plugin); all the options can be left as default.
With the second one, there will be a new option at the admin page site view named “Edit With YellowPencil”, it’s an easy way to change the font size and set it to italics with a live preview, the plugin is very visual and easy to use.
If you need more assistance I could explain all with more details; I hope this can be of use.
Best regards from QVcreative.
- This reply was modified 4 years, 8 months ago by peterv74.
Forum: Fixing WordPress
In reply to: Change image caption text sizeHello,
These are some CSS selectors in your page:
/* Title text */ .uagb-block-0ca54584 .uagb-post__text .uagb-post__title a { font-style: italic; font-size: medium; } /* Taxonomy label icon */ .uagb-post-grid .uagb-post__author span, .uagb-post-grid .uagb-post__comment span, .uagb-post-grid .uagb-post__taxonomy span, .uagb-post-grid .uagb-post__date span { font-style: italic; font-size: medium; } /* Taxonomy text */ .uagb-post-grid .uagb-post__text .uagb-post-grid-byline>* { font-style: italic; font-size: medium; } /* Excerpt text */ .uagb-block-0ca54584 .uagb-post__text .uagb-post__excerpt { font-style: italic; font-size: medium; } /* Read more button text */ .uagb-block-0ca54584 .uagb-post__text .uagb-post__cta a { font-style: italic; font-size: medium; }
The font-size attribute can be set to many units (px em rem so on…) and words (small medium large larger so on…). Ex:
font-size: medium;
font-size: large;
font-size: 30px;
font-size: 1em;I hope this can be of use.
Best regards from QVcreative.