ابدأ بالتواصل مع الأشخاص وتبادل معارفك المهنية

أنشئ حسابًا أو سجّل الدخول للانضمام إلى مجتمعك المهني.

متابعة

How to remove http://www.contactier.com link from magento...

There is form coming on magento pages, and when I click on it is redirecting me to http://www.contactier.com page.How do I remove this form.

user-image
تم إضافة السؤال من قبل Zainul Abdin , Sr.Software Developer(Team Lead) , Virtual Employee Pvt. Ltd.
تاريخ النشر: 2013/05/06
Angoche  Kennedy Angoche
من قبل Angoche Kennedy Angoche , Chief engineer , Four Seasons Hotels

How to remove the trust you have built on your client is by being open to him and tell him the reason which made you decide to remove the trust.

Chandra Kasarabada
من قبل Chandra Kasarabada , Business Transformation Leader , SPm Strategic LLC

If you're unsure about making changes to your Magento installation, consider seeking assistance from a Magento developer or expert to ensure that the form is removed properly without causing any unintended issues. Additionally, if the form was added by a third-party extension, you may want to reach out to the extension developer for support or clarification.

Raja Adil
من قبل Raja Adil , Accounts Payable Accountant , Welkin Group

To remove a specific link from your Magento website that points to http://www.contactier.com, follow these steps:

  1. Log in to your Magento admin panel using your credentials.
  2. Go to Content > Pages from the main menu to open the Pages section of Magento's Content Management System (CMS). Here you can manage all your website's pages.
  3. Find the page where the http://www.contactier.com link appears or create a new page if you haven't already done so (you can do this by clicking "Add New Page" in the top right corner of the Pages section).
  4. Click on the page you want to edit to open it.
  5. In the page editor, locate the section where the http://www.contactier.com link appears. This could be a CMS block, a widget, or any other type of content element.
  6. Click on this element to select it, and then click on the "Edit" button that appears in the top right corner of the editor.
  7. In the content editor that appears, locate the http://www.contactier.com link and delete it by pressing the "Delete" key on your keyboard.
  8. Save your changes by clicking "Save" in the top right corner of the page editor.
  9. Preview your page to make sure the http://www.contactier.com link is no longer present.
  10. Publish your changes by clicking "Publish" in the top right corner of the page editor.

If you're not sure where the http://www.contactier.com link is located, you can use your browser's "Inspect Element" feature to find it. Right-click on the link and select "Inspect Element" from the context menu that appears. This will open the browser's developer tools, which will allow you to locate the HTML code that contains the link. Once you've found the link, you can follow the steps above to remove it.

Omega Mashaba
من قبل Omega Mashaba , Functional Technical Trainer , Woolworths - Sharaf

Check for Extensions: Go to System > Configuration > Advanced > 

Muhammed Riaz
من قبل Muhammed Riaz , Devops Engineer , Chalhoub Group

Navigate to your Magento theme files, locate and edit/remove hardcoded links in template files (e.g., header.phtml, footer.phtml), check backend settings for references to "http://www.contactier.com," and clear the Magento cache.

Syed Zafar Abbas
من قبل Syed Zafar Abbas , Assistant Mannager , Adamjee Insurance

In your menu.xml file you have given action "uiform" you have to give "*/employee/index"

<add id="Test_Banners::second_level_demo" title="Shipping Vendor Cost" module="Test_Banners" sortOrder="0" action="*/employee/index" parent="Test_Banners::first_level_demo" resource="Magento_Backend::content" />

Catherine Silvederio
من قبل Catherine Silvederio , Domestic Helper/ Caregiver , Leong Yoke Sim/ Private hire

Check your Magento Configuration- First ensure that your magento configuration is correctly set up. Sometimes misconfigurations can lead to unexpected behaviour. Go to your Magento Admin Panel and navigate to stores>configuration. Look for any settings related to default pages or URL redirects. Make sure they are configured correctly. Or you can contact your hosting provider or magento support.

AYESHA UMAR AYESHA UMAR
من قبل AYESHA UMAR AYESHA UMAR , reserch officer , ayesha umar

 I have helped many powerful businessmen make big decisions that brought them large amounts of money by the use of powerful money spells. Money spells can create wealth, Money spells are safe and ethical to use if used for the right purposes. Money spells should not be used incorrectly or to create harm.

vimalathithan vedaiyan
من قبل vimalathithan vedaiyan , site execution consultend , Sai Care India Pvt Ltd

i dont know but Definitly i will try to remove ......

Md  Abdul Halim Mamun
من قبل Md Abdul Halim Mamun , Managing Director , Nissan Agro Industries Limited · Self-employed

Removing a specific link, such as http://www.contactier.com, from a Magento website involves identifying where the link is located and then removing or editing it. This can be done in a few different areas of Magento:

  1. CMS Pages and Blocks: The link could be present in a static block or page.
  2. Themes and Templates: The link might be hardcoded into a theme template file.
  3. Database: Sometimes, the link can be stored in the database.
Step-by-Step Guide 1. Check CMS Pages and Blocks
  1. Log in to Magento Admin Panel:

    • Go to your Magento Admin URL and log in with your admin credentials.
  2. Navigate to CMS Pages:

    • Go to Content > Elements > Pages.
    • Search for the pages where the link might be present.
    • Edit the page and check the content for the link. Remove or update it as needed.
  3. Navigate to CMS Blocks:

    • Go to Content > Elements > Blocks.
    • Search for the blocks where the link might be present.
    • Edit the block and check the content for the link. Remove or update it as needed.
2. Check Theme Template Files
  1. Access Your Server:

    • Use an FTP client or SSH to access your server.
  2. Navigate to Your Theme Folder:

    • Go to the app/design/frontend/[Vendor]/[Theme]/ directory, where [Vendor] and [Theme] are your specific vendor and theme names.
  3. Search for the Link:

    • Use a code editor with a search function (like VS Code or Sublime Text) to search for http://www.contactier.com in your theme files.
    • Remove or update the link in the relevant template files.
  4. Clear Cache:

    • After making changes to the theme files, clear the Magento cache to see the updates. Go to System > Tools > Cache Management and clear the cache.
3. Check the Database
  1. Access Your Database:

    • Use a tool like phpMyAdmin or a database client to access your Magento database.
  2. Search for the Link:

    • Run a query to search for http://www.contactier.com in the database. You can use a query like: sql Copy code SELECT * FROM `cms_page` WHERE `content` LIKE '%http://www.contactier.com%'; SELECT * FROM `cms_block` WHERE `content` LIKE '%http://www.contactier.com%';
    • If found, update the relevant entries to remove or change the link.
  3. Backup First:

    • Always take a backup of your database before making any changes.
4. Check Configuration Settings
  1. Check Configuration:
    • Sometimes links can be added through configuration settings. Go to Stores > Configuration.
    • Look through the various settings sections, especially Design and General, to see if the link is present.
5. Custom Modules or Extensions
  1. Check for Custom Modules:
    • If you have custom modules or extensions, the link might be added through those. Identify any custom modules and search through their code for the link.
Final Steps
  • Clear Cache: After making any changes, ensure you clear the Magento cache to apply the updates.
  • Test: Thoroughly test your site to ensure the link is removed and everything is functioning correctly.

By following these steps, you should be able to locate and remove the http://www.contactier.com link from your Magento site.

المزيد من الأسئلة المماثلة

هل تحتاج لمساعدة في كتابة سيرة ذاتية تحتوي على الكلمات الدلالية التي يبحث عنها أصحاب العمل؟