Show Posts


Topics - HADY

Pages: 1 2 3 [4] 5
46
Marketing / How to embed website to email sender from admin dashboard?
« on: February 07, 2020, 07:34:13 AM »
Hello!

How to embed website to email sender from admin dashboard?

When am trying to embed the website or any categories or even any product to be sent from admin >Sales > send email, it is sending email with subject title but no contain inside it and it is just a blank email.  What Am missing here please???



47
SEO / Manually Implementing Open Graph Protocol
« on: January 20, 2020, 08:21:18 AM »
Hello Guys!

I hope this post will help someone who's in need it.


Sharing your URL within photo, Manually Implementing Open Graph Protocol:

If you want to add these Meta tags manually then follow the steps below:

Step1:  Note down the value of the application ID if you have created a Facebook App. Otherwise, just note down the value of Facebook Admin ID which you can determine from your Facebook Insight Page.

Step2: Note down the value of the application ID if you have created a Facebook App. Otherwise, just note down the value of Facebook Admin ID which you can determine from your Facebook Insight Page.

Step3: Open your theme’s header file (generally header.php) and add following code just before the <head> tag on your web page:

<html&nbsp;xmlns="https://www.w3.org/1999/xhtml"&nbsp;xmlns:og="https://ogp.me/ns#"&nbsp;xmlns:fb="https://www.facebook.com/2008/fbml">

Step4: Copy-paste the following code at the bottom of your functions.php file and upload it to the server. This code will get the first image from the post and display it.

function catch_that_image() {
  global $post, $posts;
  $first_img = '';
  ob_start();
  ob_end_clean();
  $output = preg_match_all('/&lt;img.+src=[\' "]([^\' "]+)[\' "].*>/i', $post->post_content, $matches);
  $first_img = $matches [1]
  • ;


  if(empty($first_img)){ //Defines a default image
    $first_img = "/images/default.jpg";
  }
 return $first_img;
}

Step5: Add following open graph protocol meta tags in the head section (<head>…</head>) of your header.php page:

<?php if (have_posts()):while(have_posts()):the_post(); endwhile; endif;?> 
<meta property="fb:admins" content="your_fb_admin_id" /> 
$facebook_image= catch_that_image(); 
<?php if (is_single()) { ?> 
<meta property="og:url" content="<?php the_permalink() ?>"/> 
<meta property="og:title" content="<?php single_post_title(''); ?>" /> 
<meta property="og:description" content="<?php echo strip_tags(get_the_excerpt($post->ID)); ?>" /> 
<meta property="og:type" content="article" /> 
<meta property="og:image" content="<?php if (function_exists('wp_get_attachment_thumb_url')) {echo wp_get_attachment_thumb_url(get_post_thumbnail_id($post->ID)); }?>" /> 

<?php } else { ?> 
<meta property="og:site_name" content="<?php bloginfo('name'); ?>" /> 
<meta property="og:description" content="<?php bloginfo('description'); ?>" /> 
<meta property="og:type" content="website" /> 
<meta property="og:image" content="<?php echo $facebook_image;?>" /> <?php } ?>

NOTE1: Replace ‘your_fb_admin_id’ with your Facebook Admin ID.

NOTE2: og:type  means the type of the object. Since our object is a piece of content (article, blog post, video, photo, etc) I have used ‘article’ as the object type. You can see the complete list of supported object types from: https://developers.facebook.com/docs/sharing/opengraph#types

Step6: Once you have added your special meta tags, you can now add the Facebook ‘like’ button code into the body section (<body>..</body>) of your web pages. You can get the ‘like’ button code from: https://developers.facebook.com/docs/plugins/like-button


Step7:  Test your open graph meta tags here: https://developers.facebook.com/tools/debug


That’s it. You have successfully used the open graph protocol.

Here is: Example of a Web Page Which Uses The Open Graph Protocol

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml" xmlns:og="https://ogp.me/ns#" xmlns:fb="https://www.facebook.com/2008/fbml">
<head>
<title>Open Graph Protocol</title>
<meta http-equiv="Content-Type" content="text/html;charset=WINDOWS-1252" />
<meta http-equiv="Content-Language" content="en-us" />
<link rel="stylesheet" type="text/css" href="event-education.css" />
<meta name="verify-v1" content="so4y/3aLT7/7bUUB9f6iVXN0tv8upRwaccek7JKB1gs=" >
<meta property="og:title" content="Open Graph Protocol"/>
<meta property="og:type" content="article"/>
<meta property="og:url" content="https://www.eventeducation.com/test.php"/>
<meta property="og:image" content="https://www.eventeducation.com/images/982336_wedding_dayandouan_th.jpg"/>
<meta property="fb:admins" content="M1940H"/>
<meta property="og:site_name" content="Event Education"/>
<meta property="og:description" content="Event Education provides free courses on event planning and management to event professionals worldwide."/>

</head>

<body>

<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&amp;appId=501839739845103";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
.
.
.
</body>
</html>



If there is some better solution, let us know please.


48
AbanteCart v2.0 / Client Online Indicator
« on: January 16, 2020, 03:26:36 AM »
Hello!

I have a suggestion about adding in the future version, between last 10 orders and Latest Registrations a new table feature for showing the online clients indicator.

this is really nice feature :)

49
Security / Order Status
« on: December 19, 2019, 07:43:16 AM »
Hello Dear/ Abantecart Team!

I have a question about this point, is that correct as a security and privacy policy of clients orders to be so just easy to get information about it ?? any body will have the email and order number can so easy get everything inside that order, Isn't something missing here as an encryption end to end between website and clients ?


Is there any way to encrypt this issue (order status) more?

Best Regards
HADY

50
Template Support / printing the invoice
« on: December 14, 2019, 04:51:24 AM »
hello!
I searched the forums but didn't found a solution for printing the invoice on customer dashboard because they get empty paper or website footer. Can you tell me what is the error in this case please?

Regards
HADI

51
Support / database error
« on: December 11, 2019, 10:00:36 AM »
Hello!

since 2 days I see this error, can you tell me what is that means and what I have to to do to fix it please??


2019-12-11 17:54:51 - database error: AbanteCart core v.1.2.15 SQL Error: MySQL server has gone away
Error No: 2006
SQL: SELECT p.product_id,
p.subtract,
SUM(COALESCE(pov.subtract,0)) as option_subtract,
p.quantity,
SUM(COALESCE(pov.quantity,0)) as option_quantity
FROM ac_products p
LEFT JOIN ac_product_options po
ON (po.product_id = p.product_id AND po.status = 1)
LEFT JOIN ac_product_option_values pov
ON (po.product_option_id = pov.product_option_id)
WHERE p.product_id IN (698, 33, 51, 1, 49, 2, 44, 14, 54, 21, 6, 17, 30, 100, 12, 59, 13, 57, 23, 36, 413, 463, 456, 50, 678, 330, 408, 404, 537, 376, 403, 367, 38, 65, 614, 45, 464, 326, 737, 470, 579, 556, 402, 480, 685, 29, 483, 481, 424, 432, 543, 101, 686, 474, 416, 538, 406, 52, 798, 11, 391, 380, 387, 58, 467, 534, 425, 356, 369, 593, 371, 334, 393, 683, 498, 608, 390, 558, 318, 62, 540, 42, 27, 331, 60, 16, 63, 355, 47, 582, 580, 493, 389, 710, 427, 719, 702, 680, 316, 705, 363, 706, 440, 541, 679, 435, 701, 321, 707, 323, 783, 792, 784, 793, 785, 794, 780, 739, 394, 778)
GROUP BY p.product_id in <b>public_html/core/database/amysqli.php</b> on line <b>114</b>


your answers very important to me
Thanks in advance
HADI

52
Template Support / URL indication
« on: November 12, 2019, 07:32:45 AM »
Hello!

I would like to know the reason of appearance of links such like next one in different languages and the way to push the links to display correct links as they been done on ceo section.


Example: https://www.mydomain.com/%D0%BF%D0%B0%D1%80%D1%82%D0%BD%D0%B5%D1%80%D1%8B

Regards
HADY


53
Template Support / Correct permissions
« on: October 25, 2019, 10:24:53 AM »
Hello!

On Website dashboard the staff of company will need to edit and modify the website and,

I need your help to set the correct permissions for staff which will create new products, categories and who's gonna check the orders, payments marketing, sales and logistics.

In the company there is next departments:
1. Marketing
2. developing
3. Sales
4. Accountant
5. Manufacturing
6. logistics

Thank you for reading my post and I hope that I could Explain the requirement correctly.


Regards
HADY
 

54
Templates / category description form & Characters Limitation
« on: October 18, 2019, 07:25:39 AM »
Hello!

I checked long time in the forums about editing the category description form & Characters Limitation I have too big code which I need to insert in the description of category and the code is not completely showing on storefront page because the form characters is limited. I will appreciate your help, thank you in advance for your suggestions.


Regards
HADY

55
Documentations & Manuals / translation Order Statuses
« on: October 02, 2019, 07:13:41 AM »
Hello!

I searched too much in the forums about translating Order Statuses  but couldn't find any post or maybe my search wasn't successful.


Can you guide me to translate the Order Statuses please ???

In advanced thank you so much

Hady

56
AbanteCart v2.0 / SMS encryption and verifications
« on: August 31, 2019, 05:46:42 AM »
I have A suggestion about adding mobile connection to Abantecart to supply notification SMS for clients and for website's owner.


Regards

57
Template Support / turning to a slider banner
« on: August 23, 2019, 10:21:32 AM »
Hi community!

I can I turn these  TAGS to a slider banner please?? 


any one can help in this please?? if you ask me why ? because they are taking a place on website in vertical position...


<section class="row promo_section">
<div class="col-md-3 col-xs-0 promo_block">
      <div class="promo_icon"><i class="fa fa-truck fa-fw" style='font-size:48px;color:green'></i></div>
      <div class="promo_text">
         <h6>1. Free Shipping</h6>
         All Over In World Over $25.000</div>
   </div>
</section>

<section class="row promo_section">
<div class="col-md-3 col-xs-0 promo_block">
      <div class="promo_icon"><i class="fa fa-money fa-fw" style='font-size:48px;color:green'></i></div>
      <div class="promo_text">
         <h6>2. Easy Payment</h6>
         Payment Gateway Support</div>
   </div>
</section>

<section class="row promo_section">
<div class="col-md-3 col-xs-0 promo_block">
      <div class="promo_icon"><i class="fa fa-clock-o fa-fw" style='font-size:48px;color:green'></i></div>
      <div class="promo_text">
         <h6>3. Delivery In Time</h6>
         To All Wholesale Markets</div>
   </div>
</section>

<section class="row promo_section">
<div class="col-md-3 col-xs-0 promo_block">
      <div class="promo_icon"><i class="fa fa-tags fa-fw" style='font-size:48px;color:green'></i></div>
      <div class="promo_text">
         <h6>4. Large Variety</h6>
         + 550,000 Products</div>
   </div>
</section>

<section class="row promo_section">
<div class="col-md-3 col-xs-0 promo_block">
      <div class="promo_icon"><i class="fa fa-phone fa-fw" style='font-size:48px;color:green'></i></div>
      <div class="promo_text">
         <h6>5. Customer Service</h6>
         24/7 Services</div>
   </div>
</section>


Thanks in advance for your support.


Regards

58
Template Support / to up arrow
« on: August 22, 2019, 06:55:42 AM »
Hi!

I searched the forums but couldn't find any post about this issue,   how to edit (to up arrow) the place and move it to other place please??

Regards
 HADY

59
Template Support / affiliate generating links
« on: August 21, 2019, 08:41:05 AM »
Hello Community!

I searched long time in the forums about this kind of post but didn't found anything helpful.


Can you tell me please, how to integrate this kind of service on Abantecart to activate affiliate programs on websites please? 

Regards
HADY

60
Templates / Turkish Cities in Russian language incorrect Named
« on: August 20, 2019, 08:24:09 AM »
Hi Community!

I found a bug in Turkish Cities in Russian language incorrect Named.

How to fix it please to be correctly named??

Regards

Pages: 1 2 3 [4] 5

Powered by SMFPacks Social Login Mod