Forum Replies Created

Viewing 15 replies - 646 through 660 (of 3,259 total)
  • Forum: Fixing WordPress
    In reply to: Gaming League

    I don’t know if there are suitable plugins already available, I have not looked.

    The cost would depend upon all sorts of things. If you don’t have the skills to develop this software already with your associates, then you will need to find a developer and create a specification. You may find someone at a local meetup group.

    Please realise that this site is populated by people who are proud of neither knowing nor needing access, our database is mySQL.
    That said you will surely be able to load your tables by importing a CSV file, if it doesn’t work ask Microsoft and not us.
    On the other hand can you do the browsing that you need using phpmyadmin ?

    Some of your img elements have errors.
    Using: https://validator.w3.org/nu/?doc=http%3A%2F%2Fwww.danyplast.com.br%2Finjetorasusadas%2F
    I see various warnings and some errors such as:

    Element img is missing required attribute src.
    
    From line 232, column 214; to line 232, column 380
    
    fg-thumb"><img  width="200" height="110" data-src-fg="http://www.danyplast.com.br/wp-content/uploads/cache/2017/09/MG-TPO-100-1989-22-01-2013/1845598035.jpg" class="fg-image" /></a><f

    So yes this is looking like a plugin issue, a plugin that uses “fg” in naming its css style rules, this will be a clue as to which one.

    Do you have an SSL certificate that includes the name: “mail.theleatherdesignery.com”

    The clue is the error:
    *.prod.iad2.secureserver.net' did not match expected CN=mail.theleatherdesignery.com
    It looks like there is a certificate for the server but not for your domain.
    Have you tried using an SMTP address of: “mail.prod.iad2.secureserver.net” since this is probably the same service your “mail.” is mapped to.
    Again your hosting technical support may be of assistance.

    Using my browser inspector, I see that the solid dots are caused by the “ul” css styling at line 191 or your style.css file:

    ul {
        list-style: disc inside;
    }

    Now don’t edit this file, rather go into your website theme customiser and to the additional css tab add:

    .inner ul.portfolio {
        list-style: none;
    }

    This will remove the dots and the row they create without impacting other lists.

    I would do this in javascript, create the display as a table to provide a grid with a background, use the click events from controls (1) to set the background, use the color selections in (2) to place different colored GIF files with transparent background into the table cells.

    I would put the code into a plugin and access it using shortcodes.

    Forum: Fixing WordPress
    In reply to: Gaming League

    Certainly possible.
    I have developed applications like this by creating a plugin. It used its own custom tables, it connected to WordPress by using shortcodes.
    I found this plugin and used it as a working example:
    https://wordpress.org/plugins/wp-csv-to-database/
    Using shortcodes: https://codex.wordpress.org/Shortcode_API

    Firstly the most appropriate support source for purchased themes is from the theme vendor, they have the experience and access to source code. However your issue is not specific to your theme, it is about installing themes on localhost. Since it is a localhost site you do not need to do the upload of the archive within WordPress to install a theme, rather I would extract the archive and install the files using the native server’s file manager. Installing files by FTP using filezilla is also often an option (if you have FTP access).

    Is your webserver working on the standard free themes ? Like 2017 etc ? Make sure you can walk before you try and fly.
    Can you even view your “readme.html” file ?

    If you need hands on support you could try and find someone at a local meetup group, or post a job on “http://jobs.wordpress.net/&#8221;

    I would forget about the session concept, and only resolve the link target when it is clicked. Capture the onclick event in javascript and have it do an AJAX request to your website to get the target URL. The .php file that receives the AJAX call updates an index in the database and returns as text the url obtained by indexing into an array or table indexed modulo the table size.
    This way every click serves out a different url in rotation.

    Correct, .exe files are for windoze.
    Suggest that you look for plugins that provide outgoing email service known as SMTP.

    You can also use the theme customizer additional css feature. This is even easier than any of cjc’s methods.

    Have you thought of using a CRM = Customer Relationship Management instead, rather than WordPress. Organizing your community members along the lines of salespeople and clients would seem to be natural.

    Let me clarify how I understand your system to be configured:
    – You have a single WordPress installed on just one of your computers as localhost, I am not sure if this machine is Windows or Mac ?
    – You can using a web browser on the Windows computer login to WordPress, please tell me what web address you use for this ?
    – When you try using the web browser on the Mac, you cannot login to WordPress, please tell me what web address you use for this ?
    – Using phpmyadmin on the Mac you can access the WordPress database, please tell me what web address you use for this ?

    It is quite common for localhosted WordPress sites to not be able to send emails since the required SMTP service is not installed, usually this is of no consequence.

    Could you also tell me the settings you are using for “site address” and “WordPress address”, login to the WordPress dashboard, go to settings > General for these.

    I am sure that if you can provide the information I requested, that I can assist you. Please realise that though you may thing the answers are obvious that I need the answers to be able to assist you.

    PS: Each WordPress installation has a “readme.html” file, please try and display this file from both the Windows and Mac machines and tell me which work.

    • This reply was modified 8 years, 2 months ago by RossMitchell.

    Firstly as Steve said it would help us help you if you provided a link to your website.

    Suggest that you learn to use your web browser’s “inspector”, it will show how your html and css are working. I am sure that you will find that at the top of your text that some element has either a margin or padding setting that is causing the space you notice. Once you have identified the code you can experiment with changes in your inspector to get the look you want, then use the theme customizer to modify your website permanently.
    We volunteers are perfectly happy (or enough of us are) to look at your website and give you a css snippet, but in time most people prefer to become self sufficient using the available tools like a web inspector and the css customizer.

    At the moment I am not seeing a background image.
    If the background image were set on any of:
    id #content
    class .main-container
    class .content-area
    Then setting the background of the footer targeted to the appropriate id or class to transparent.

    • This reply was modified 8 years, 2 months ago by RossMitchell.
Viewing 15 replies - 646 through 660 (of 3,259 total)