Så funkar det
Bläddra bland jobb
Logga in
Registrera dig
Publicera ett projekt
Få det att hända
med Freelancer
Hitta inspiration till din nästa stora idé
Denna wordpress project kostar
och tog 6 dagar
$275 USD
Få det att hända
med Freelancer
Detta wordpress project kostade
och tog 6 dagar
$275 USD
Allt
Hemsidesdesign
Mobil
Grafisk design
Logo Design
3D-modellering
Illustration
Branding
Produktdesign
Förpackningsdesign
Wordpress
Du har sparat en artikel till din samling.
Du har sparat en artikel till dina samlingar.
Du har redan gillat den här artikeln.
Du har redan ogillat den här artikeln.
Kunde inte gilla/ogilla artikeln. Försök igen.
Du har gillat en artikel.
Handplockade wordpress-idéer till dig
Utvalda jobb från våra bästa frilansare
Book Publishing Website
av syrwebdevelopmen
Redesign for a Food Delivery App
av KishanSunar
Homepage Mockup - Life Insurance Co.
av webninjaz
Space Themed Website Design
av syrwebdevelopmen
Design and Rebuild WordPress Site
av khubaib411
Mockup Design for a Food Website
av AmaniHaki
WordPress Site for a Beverage Co.
av nownilanjan
WordPress Development
av taposmukherjee25
Landing Page + Product Page
av Berkcivelek
Build a Coaching Website
av mnislamsaju2
Website Design for an African NGO
av ahmedshafiqqq
Mockups for E-commerce Site
av urfi
Blogger Template
av MubarakHossein
Landing Page for Interview Tool
av blackeye77
WordPress Redesign
av gravitygraphics7
Website Design for a Consumer Shop
av sneha15112018
Relaterade artiklar
Lär dig allt om wordpress
How to create a very pretty WordPress website with Elementor
Thanks to Elementor anyone can transform Wordpress into a stunning drag and drop website builder. We'll show you how.
14 minsta lästid
How to create a very pretty WordPress website with Elementor
Thanks to Elementor anyone can transform Wordpress into a stunning drag and drop website builder. We'll show you how.
14 minsta lästid
How to get a Wordpress template designed
10 minsta lästid
Our 10 favorite free WordPress templates
7 minsta lästid
Wix vs WordPress: Who wins the website wars?
12 minsta lästid
How to get a Wordpress template designed
Our 10 favorite free WordPress templates
Wix vs WordPress: Who wins the website wars?
Tjäna pengar på frilansande
Senaste wordpress projekten
Se mer →
WordPress landing page creation
€30 – 250 EUR
Publicerad
39 sekunder sedan
I need to replicate an already existing Landing. it must be copied in its smallest part. it is currently made with drupal. everything is very lean and short, the site to be replicated is made up of 3 web pages, and a data collection form with 4 ratios for the information. I am looking for maximum speed and precision
PHP
WordPress
CSS
HTML
PHP
WordPress
+2 till
fast pris
20 bud
0,0
website re-design of forms
£20 – 250 GBP
Publicerad
58 sekunder sedan
I am currently looking for a advanced website engineer who can fix the forms of my website as well as correct the errors. 1) rectify the contact us form as it is currently not working and data from forms are not being sent 2) rectify 503 Service Unavailable error 3) content updated 4) 1 more form needs to be added website: www.impulseservices.co.uk Need full functionality of website to be working
PHP
Website Design
Graphic Design
WordPress
HTML
PHP
Website Design
+3 till
fast pris
12 bud
0,0
Redesign our wordpress site (www.wellnessthroughmovement.com)
$15 – 25 USD
per timme
Publicerad
sju minuter sedan
We are looking for a professional expert/agency in Wordpress who can redesign our existing site (www.wellnessthroughmovement.com) to suit our business line. You will be taking end-to-end responsibilities of design, develop and test the new site, including setting up email contacts and testing. Wellness Through Movement offers mindfulness from the body to the brain courses (self-study). The online programs are designed for adults to teach children. Strategies support movement classes, research studies, and classroom and elementary schools in US (with a goal to expand this new subject of body-to-mind learning in other countries). You would do the following: 1. Content Research and writing - Some existing content to be used, some to be researched/developed (I will provide several reference sites). 2. Web Design - Before you develop, you would provide a high level design of all pages 3. Include shopping cart for lesson purchase 4. Development including of-the-shelf plugins - You will have to find free to use. This also include graphics design 5. Test and fix if anything missing 6. Setup page for SEO 7. Go Live, knowledge transfer and 45 days support included Please apply only if you have all 3 skills (content, design and Wordpress development). Please understand features of existing site (we using Paypal for payment). Also understand overall estimate of time required to get the job done will be requested. Ongoing help with site will be additional payment.
Website Design
Graphic Design
WordPress
Web Hosting
Content Creation
Website Design
Graphic Design
+3 till
Rekryterare
timpris
43 bud
0,0
In this assignment, you are required to design, implement and test a program that can be used to manage a simple personal Schedule with appointment records, which are stored in a list.
$10 – 30 USD
Publicerad
16 minuter sedan
Some documents that needs to be solved. Goals and Topics The assignment problem is straightforward. All necessary details have been supplied. The solution to the problem will use the programming concepts and strategies covered in workshops 1-10 delivered in the course. The subgoals are: • Obtaining an advanced understanding of values, variables and lists; • Understanding program input and output, functions and expressions; • Understanding simple strategies like iteration, validation, sum and count; • Understanding of advanced strategies like swapping, sorting, tallying and searching; • Translating simple design into Python code; • The mechanics of editing, interpreting, building and running a program; • Testing a program; • Commenting source code, especially Docstring on functions; • Becoming confident and comfortable with programming in small problems. The Task In this assignment, you are required to design, implement and test a program that can be used to manage a simple personal Schedule with appointment records, which are stored in a list. Your program must provide an interactive design that allows the user to: • create new appointment records and add them to the Schedule; • display all appointment records with details; • sort all appointments based on an attribute; • search for specific appointment records in all records based on an attribute. The program is to be implemented by Python and as a .ipynb file running on Jupyter notebook. Schedule Figure 1 illustrates the Schedule with an interactive editing environment on a webpage. Please use this illustration as the reference for the following descriptions. It is not necessary for you to present the interactive environment exactly as the Figure 1. Use 5 input functions to input the appointment record information. The records can be displayed using a table with headers and “--” as Figure 2. Figure 3 shows appointment records sorted by “Priority”. Figure 4 shows the examples of the tallying results. Figure 5 shows appointment records with “Subject” contains letter “a”. Your Tasks It is strongly suggested that the following approach is to be taken to design and implement the program. Five Input Functions You should first design, implement and test the input functions of Schedule. You need to create 5 input functions (refer to Figure 1). For example, the input function is applied to enter the date with the hint “Please enter the date of your new appointment, e.g. 25/9/2022”. You are welcome to design your 5 input functions and IDE, as long as they can input the priority, date, start time, end time and subject of the new appointments similar to the sample IDE shown in Fig. 1. The 5 inputs for each appointment record will be stored as a string (record) in the appointmentList. All the functions except built-in functions should be presented with proper Docstrings. The addRecord() Function You should design, implement and test a function which adds an appointment record to the Schedule. An appointment record will be added to the Schedule each time when the 5 inputs of the appointment record are all valid. If any input is invalid, display an error message and ask user for another input. The function handles the following tasks: • Collect all data (priority, date, start time, end time and subject) for the appointment record (assigned them to a string as "High;23/9/2022; 9; 10; CSC1401 class", other formats for the string are not acceptable for this assignment); • Validate if the input for "Date" is correct regarding the specification in the Date section by using the function isValidDate() described below; • Validate if the input for "Time" is correct regarding the specification in the Time section. A non-empty string within 30 characters (including space between words) for the subject. • “Low” and “High” are the only two valid inputs of priority, case insensitive. • Call isConcurrentAppointment() first then add the valid appointment record into the.
Website Design
Graphic Design
WordPress
HTML
Website Design
Graphic Design
+2 till
fast pris
9 bud
0,0
New website design
€250 – 750 EUR
Publicerad
15 minuter sedan
O would like to realise a new design for this website : www.gge.eu Logo does not have to change. I'm looking for someone who presents 4-6 mockup from where to choose the final solution. The final realisation of the site is not included in this project. After choosing the final design we can start a new project for the complete realisation of the website with new budget.
PHP
Website Design
Graphic Design
WordPress
HTML
WooCommerce
PHP
Website Design
+4 till
Rekryterare
fast pris
34 bud
0,0
Website Work
₹12 500 – 37 500 INR
Publicerad
25 minuter sedan
Our website needs some change and update. We are looking for a laravel designer.
PHP
Website Design
Graphic Design
WordPress
Laravel
PHP
Website Design
+3 till
fast pris
16 bud
0,0
Professional to Audit Speed Issues of Website
$25 – 50 CAD
per timme
Publicerad
26 minuter sedan
need someone to audit the speed issues of website and identify it. (won't need to apply changes to fix the issues just identify)
PHP
Website Design
WordPress
CSS
HTML
PHP
Website Design
+3 till
timpris
51 bud
5,0
(9 omdömen)
Affiliate marketing website
₹1 500 – 12 500 INR
Publicerad
50 minuter sedan
Can you create a performance-optimized (mobile and app) site to compare products? - mobile - site speed score 70+ - Web - site speed score 90+ - Product CMS with custom attributes - Core 7 pages(home, Category, Product, Blog, Account, compare, Wishlist) - Affiliate link management and revenue analytics. - Google Analytics and GTM setup.
PHP
SEO
WordPress
Google Analytics
WooCommerce
PHP
SEO
+3 till
fast pris
7 bud
0,0
Se mer
Sweden / Svenska
Hjälp & Support
Frilansare
Kategorier
Projekt
Tävlingar
Frilansare
Företag
Utvalda frilansare-programmet
Project Management
Lokala jobb
Fotografera var som helst
Showcase
API för utvecklare
Bli verifierad
Om
Om oss
Hur det fungerar
Karriär
Säkerhet
Investerare
Sitemap
Berättelser
Nyheter
Villkor
Integritetspolicy
Villkor
Upphovspolicy
Uppförandekod
Avgifter och kostnader
Partners
Escrow.com
Loadshift
Freightlancer
Warrior Forum
Appar
Kopia till urklipp misslyckades, försök igen efter att ha justerat dina behörigheter.
Kopierat till urklipp.
Registrerade Användare
Totalt antal jobb publicerade
Freelancer ® is a registered Trademark of Freelancer Technology Pty Limited (ACN 142 189 759)
Copyright © 2022 Freelancer Technology Pty Limited (ACN 142 189 759)
There is no internet connection
Laddar förhandsgranskning
Please enable JavaScript to continue using this application.