Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter devilsaces

    (@devilsaces)

    Thank you for a great plug-in. I look forward to the update.

    Thread Starter devilsaces

    (@devilsaces)

    Thank you very much. That was definitely the problem. I’ll have to contact that developer. I had a feeling it was another plugin that was causing the problem.

    Thank you for your help.

    Thread Starter devilsaces

    (@devilsaces)

    Hi Tobias,

    The site is: https://game-of-throws.com/2015-game-of-throws-keeper-chart/

    Sorting seems to not work as well. I’m on WP v4.3, and TablePress v1.6.1

    Please let me know if you need any other info.

    Thanks

    Thread Starter devilsaces

    (@devilsaces)

    Thank you very much.

    I was able to create the repo in the subsite manually using SSH and that appears to solve the problem. I haven’t tested everything out yet but at least Revisr is not reading the other .git folder. I’ll setup the rest tomorrow.

    I appreciate your help.

    Thread Starter devilsaces

    (@devilsaces)

    Thank you again,

    I don’t have too much experience using the command line on a hosting server but I believe it is through Shell Access (SSH). I have requested my hosting provider to enable SSH so I will report back once that is complete.

    Thanks

    Thread Starter devilsaces

    (@devilsaces)

    Hi, Thank you for the fast reply.

    unfortunately editing the wp-config.php file did not work. But just to confirm I entered the directory correctly I used:

    define( ‘REVISR_GIT_DIR’, dirname(‘/home/scribesg/public_html/stage’) );

    I have also tried :

    define( ‘REVISR_GIT_DIR’, dirname(‘/public_html/stage’) );
    and
    define( ‘REVISR_GIT_DIR’, dirname(‘/stage’) );

    I tried deleting the plugin and re installing it as well (deleting removes the revisr database so I didn’t have to worry about that).
    Under the plugin-help the repository directory never changes from /home/scribesg/public_html

    Do I need to manually create a .git folder in /stage?
    Or do I need to delete the main site revisr plugin first?

    Thanks

    I’m not an expert on codding css. The way I figured out which css code to edit was going to the actual web page and right clicking the distorted image and select inspect element (using chrome). Code pops up on the bottom and for the image, the css is on the right. change values there can show if it fixes the problem. then use that new value.

    For what I found on your site the width is set to 100%. It needs to be set as auto.

    .images img {
    width: 100%
    }

    Change to

    .images img {
    width: auto
    }

    This worked for me:
    Under WooCommerce -> Settings -> Products -> Display:
    Set Catalog Images 150 × 150 px Hard Crop? No
    Single Product Image 300 × 300 px Hard Crop? No
    Product Thumbnails 90 × 90 px Hard Crop? No

    Might be unrelated but my actual image sizes are 520×800

    Under Edit CSS (change height to desired size below and leave width on auto):

    /*Shop page image size*/
    .woocommerce ul.products li.product a img, .woocommerce-page ul.products li.product a img {
    width: auto;
    height: 150px;
    }

    /*Cross-sell image size*/
    .woocommerce .related ul li.product img, .woocommerce .related ul.products li.product img, .woocommerce .upsells.products ul li.product img, .woocommerce .upsells.products ul.products li.product img, .woocommerce-page .related ul li.product img, .woocommerce-page .related ul.products li.product img, .woocommerce-page .upsells.products ul li.product img, .woocommerce-page .upsells.products ul.products li.product img {
    width: auto;
    height: 150px;
    }

    Hope that helped

Viewing 8 replies - 1 through 8 (of 8 total)