salimbasar
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Contact Form / is blocking translations after the code.So I understand that we need to add translation for CF7 Also. I thought that changing language of the site and adding translated words to Contact form settings.
BY the way how to change local setting of CF7? Changing user language?
IN this page below i used a local custom form not translated to english .https://www.estambulturismo.com/tour/estambul-y-efeso-6-dias/
BY the way one of our friend found the solution by adding en empty en_US.mo file
https://www.estambulturismo.com/tour/estambul-y-capadocia/Now this page translations is working.
Forum: Plugins
In reply to: [Flamingo] Displaying messages in date orderIn my case no. I can find the last message at the last page.
I have tried on a website even there is no other plugin. Same result for me.
Regards
Forum: Plugins
In reply to: Woocommerce product variations layout changeI got the solution myself.
There is variable.php in wp-content/plugins/woocommerce/templates/single-product/add-to-cart
I opened that file
? have changed
<table class="variations" cellspacing="0"> <tbody> <?php foreach ( $attributes as $attribute_name => $options ) : ?> <tr> <td class="label"><label for="<?php echo sanitize_title( $attribute_name ); ?>"><?php echo wc_attribute_label( $attribute_name ); ?></label></td> <td class="value"> <?php $selected = isset( $_REQUEST[ 'attribute_' . sanitize_title( $attribute_name ) ] ) ? wc_clean( $_REQUEST[ 'attribute_' . sanitize_title( $attribute_name ) ] ) : $product->get_variation_default_attribute( $attribute_name ); wc_dropdown_variation_attribute_options( array( 'options' => $options, 'attribute' => $attribute_name, 'product' => $product, 'selected' => $selected ) ); echo end( $attribute_keys ) === $attribute_name ? '<a class="reset_variations" href="#">' . __( 'Clear selection', 'woocommerce' ) . '</a>' : ''; ?> </td> </tr> <?php endforeach;?> </tbody> </table>
To
<table class="variations" cellspacing="0"> <tbody> <?php foreach ( $attributes as $attribute_name => $options ) : ?> <tr> <td class="label"><label for="<?php echo sanitize_title( $attribute_name ); ?>"><?php echo wc_attribute_label( $attribute_name ); ?></label></td> </tr> <tr> <td class="value"> <?php $selected = isset( $_REQUEST[ 'attribute_' . sanitize_title( $attribute_name ) ] ) ? wc_clean( $_REQUEST[ 'attribute_' . sanitize_title( $attribute_name ) ] ) : $product->get_variation_default_attribute( $attribute_name ); wc_dropdown_variation_attribute_options( array( 'options' => $options, 'attribute' => $attribute_name, 'product' => $product, 'selected' => $selected ) ); echo end( $attribute_keys ) === $attribute_name ? '<a class="reset_variations" href="#">' . __( 'Clear selection', 'woocommerce' ) . '</a>' : ''; ?> </td> </tr> <?php endforeach;?> </tbody> </table>
Result was as i like.
Sorry for disturbing you.
Or i can ask like that do you know any galery plugin that i can add photos from photo databases without uploading photo to the root.
Forum: Plugins
In reply to: Best adsense plugin?Do you have any other adsense plugings that you know, i have tried many of them.
Forum: Plugins
In reply to: Best adsense plugin?Thanks for your reply
I have tried Quick adsense,
it is working good for the posts, specially when we open the posts as a page.
But homepage distribution of the ads not good.
Forum: Fixing WordPress
In reply to: How to hide contact form in the post`<!DOCTYPE html>
<html>
<head>
<scriptsrc=”https://code.jquery.com/jquery-1.4.4.js”></script>
</head>
<body>
<button>Toggle</button>
<p style=”display: none”>Good Bye</p>
<script>$(“button”).click(function () {
$(“p”).toggle();
});
</script></body>
</html>’This is the script i found. I would like to have same one in my posts.
Forum: Plugins
In reply to: I need a photo gallery? have already checked all plugins,
? couldnt find one. ?f you know one please let me knowForum: Networking WordPress
In reply to: Godaddy WordPress MuMaybe you know that on godaddy when we open a hosting with adomain.com for adding new domains we do like this
bdomain.com use the adomain.com/bdomain directory
cdomain.com use the adomain.com/cdomain directorywhen I install wordpress for bdomain.com I install on adomain/bdomain directory.
in this situation how i will start?
installing a worpress mu on test.adomain.com without pointing any domain ?
installig a wordpress mu on bdomain.adomin.com (adomain.com/bdomain/)by pointing to bdomain.com?
After the second when i add a new site newsite.bdomain.com wildcard dns points the domain to adomain.com
Because ? add a wild card dns (*) to bdomain.com with dedicated ip of primary hosting domain which is adomain.com.
i am totaly confused, I do not know how i will solve this problem.
Forum: Networking WordPress
In reply to: Godaddy WordPress MuSo you mean that I can not install another worpress mu with the same dedicated ip.
There must be another solution.
Thanks